import { type ButtonHTMLAttributes, type CSSProperties, type ReactNode, } from "react"; export interface ButtonProps extends ButtonHTMLAttributes { /** Content to render inside the button */ children?: ReactNode; /** Custom className for the button */ className?: string; /** Custom styles */ style?: CSSProperties; }