import React from 'react'; import { Avatar, Box, Text, toRem } from 'folds'; import { NavItem, NavItemContent, NavLink } from '../../components/nav'; import { getBotPath } from '../../pages/pathUtils'; import type { BotPreset } from './catalog'; const MONO_FONT = '"JetBrains Mono Variable", ui-monospace, monospace'; const ROW_MIN_HEIGHT = toRem(56); const AVATAR_BG = '#7ab6d9'; type BotCardProps = { preset: BotPreset; selected?: boolean; }; export function BotCard({ preset, selected }: BotCardProps) { const initial = preset.name.trim().charAt(0).toUpperCase() || '?'; return ( {initial} {preset.name} {preset.mxid} ); }