import { ReactNode, CSSProperties } from "react"; export type ButtonProps = { children: ReactNode; onClick?: () => void; style?: CSSProperties; }; export const Button = ({ children, onClick, style }: ButtonProps) => { return ( ); };