import { TButtonStyleProps } from '@/components/buttons/types/TButtonStyleProps';

export type TButtonLinkProps = React.ComponentPropsWithRef<'a'> &
  TButtonStyleProps & {
    children: React.ReactNode;
  };
