import { ChevronRight, LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; import { Link } from './Link'; import { Text } from './Text'; export interface SidebarActionLinkProps { label: string; icon: LucideIcon; href: string; isActive?: boolean; } export const SidebarActionLink = ({ label, icon, href, isActive = false }: SidebarActionLinkProps) => { return ( {label} ); };