import { ButtonProps } from "@/constants/types"; export default function Button({ children, onClick, className, }: ButtonProps) { return ( ); }