import { LucideIcon } from 'lucide-react'; import { ReactNode } from 'react'; import { Box } from './Box'; import { Icon } from './Icon'; import { Text } from './Text'; export interface AccountItemProps { icon: LucideIcon; title: string; description: string; action?: ReactNode; intent?: 'primary' | 'telemetry' | 'success' | 'low'; } export const AccountItem = ({ icon, title, description, action, intent = 'low' }: AccountItemProps) => { return ( {title} {description} {action && ( {action} )} ); };