import { ChevronRight, LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; import { Link } from './Link'; import { Text } from './Text'; interface QuickActionItemProps { href: string; label: string; icon: LucideIcon; iconVariant?: 'blue' | 'amber' | 'purple' | 'green'; } export function QuickActionItem({ href, label, icon, iconVariant = 'blue' }: QuickActionItemProps) { const variantColors = { blue: 'rgb(59, 130, 246)', amber: 'rgb(245, 158, 11)', purple: 'rgb(168, 85, 247)', green: 'rgb(16, 185, 129)', }; const variantBgs = { blue: 'bg-primary-blue/10', amber: 'bg-warning-amber/10', purple: 'bg-purple-500/10', green: 'bg-performance-green/10', }; return ( {label} ); }