"use client" import { variants } from "./variants" import { cx, type VariantProps } from "class-variance-authority" import type { HTMLAttributes } from "react" import { Typography } from "../Typography" interface FakeButtonProps extends Omit, "color">, VariantProps { isDisabled?: boolean } export function FakeButton({ variant, color, size, fullWidth, children, className, isHovered, isDisabled, ...props }: FakeButtonProps) { const classNames = variants({ color, size, variant, fullWidth, isHovered, className, }) return ( {children} ) }