DataScope26/WEB
0
1import "./ButtonAlert.css";2 3export default function ButtonAlert({4 children,5 type = "button",6 className = "",7 onClick,8 ...props9}) {10 return (11 <button12 type={type}13 className={["button-alert", className].filter(Boolean).join(" ")}14 onClick={onClick}15 {...props}16 >17 {children}18 </button>19 );20}21 