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