import type { VariantProps } from 'class-variance-authority'; import type { ComponentProps, ReactNode } from 'react'; import { Button, type buttonVariants } from './button'; export interface LinkButtonProps { href: string; children: ReactNode; variant?: VariantProps['variant']; icon?: ReactNode; iconRight?: ReactNode; size?: ComponentProps['size']; } export function LinkButton({ href, children, variant = 'default', icon, iconRight, size = 'lg', }: LinkButtonProps) { return ( ); }