import { cn } from "@/app/utils/functions"; import React from "react"; const CommonButton = ({ onClick, content, className, disabled, type, variant, children, }: { onClick?: () => void; content?: string; className?: string; disabled?: boolean; type?: "button" | "submit" | "reset"; variant?: "primary" | "secondary" | "tertiary" | "tertiarySecondary"; children?: React.ReactNode; }) => { return ( ); }; export default CommonButton;