import * as React from 'react'; import clsxm from '@/lib/clsxm'; import UnstyledLink, { UnstyledLinkProps, } from '@/components/links/UnstyledLink'; enum ButtonVariant { 'primary', 'outline', 'ghost', 'light', 'dark', } type ButtonLinkProps = { isDarkBg?: boolean; variant?: keyof typeof ButtonVariant; } & UnstyledLinkProps; const ButtonLink = React.forwardRef( ( { children, className, variant = 'primary', isDarkBg = false, ...rest }, ref ) => { return ( {children} ); } ); export default ButtonLink;