import { ArrowRight, LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; import { Link } from './Link'; import { Text } from './Text'; export interface QuickActionLinkProps { label?: string; icon?: LucideIcon; href: string; children?: React.ReactNode; variant?: string; } export const QuickActionLink = ({ label, icon, href, children, variant }: QuickActionLinkProps) => { return ( {children ? children : ( <> {icon && } {label} )} ); };