CoolFace
Apppublic

DataScope26/WEB

sourceHugging Faceupdated 7d agoView on Hugging Face
0likes
ButtonAlert.jsx21 linesDownload Raw Back to components
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