import { cn } from "@/app/utils/functions"; import React from "react"; interface ButtonProps { content: React.ReactNode; className?: string; onClick?: () => void; type?: "button" | "submit" | "reset"; disabled?: boolean; } const PrimaryButton = ({ content, onClick, className = "", type = "button", disabled = false, }: ButtonProps) => { return ( ); }; export default PrimaryButton;