import clsx from "clsx"; import React from "react"; type Props = { children: React.ReactNode; onClick?: () => void; className?: string; }; export const Button = React.forwardRef( function Button({ children, onClick, className }, ref) { return ( ); }, );