import React from 'react'; import { ChevronRight, LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Text } from './Text'; import { Icon } from './Icon'; import { Link } from './Link'; import { Stack } from './Stack'; interface SidebarActionLinkProps { href: string; icon: LucideIcon; label: string; iconColor?: string; iconBgColor?: string; } export function SidebarActionLink({ href, icon, label, iconColor = 'text-primary-blue', iconBgColor = 'bg-primary-blue/10', }: SidebarActionLinkProps) { return ( {label} ); }