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;
}
export const QuickActionLink = ({
label,
icon,
href
}: QuickActionLinkProps) => {
return (
{label}
);
};