import { VariantProps } from "class-variance-authority"; import * as React from "react"; import { cn } from "src/lib/utils"; import { Button } from "./ui/button"; import { buttonVariants } from "./ui/buttonVariants"; type Props = { icon: React.ComponentType; text: string; } & React.ComponentProps<"button"> & VariantProps & { asChild?: boolean; }; const ResponsiveButton = ({ icon: Icon, text, variant, asChild, children, className, ...props }: Props) => { const content = ( <> {text} ); return ( ); }; export default ResponsiveButton;