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