import { VariantProps } from "class-variance-authority"; import * as React from "react"; import { LinkButton } from "src/components/ui/custom/link-button"; import { buttonVariants } from "./ui/buttonVariants"; type Props = { icon: React.ComponentType; text: string; to: string; } & React.ComponentProps<"button"> & VariantProps & { asChild?: boolean; }; const ResponsiveLinkButton = ({ icon: Icon, text, variant, ...props }: Props) => { return ( <> {text} ); }; export default ResponsiveLinkButton;