CoolFace
Apppublic

DataScope26/WEB

sourceHugging Faceupdated 7d agoView on Hugging Face
0likes
ButtonPrimary.jsx21 linesDownload Raw Back to components
1import "./ButtonPrimary.css";2 3export default function ButtonPrimary({4  children,5  type = "",6  className = "",7  onClick,8  ...props9}) {10  return (11    <button12      type={type}13      className={`button-primary ${className}`.trim()}14      onClick={onClick}15      {...props}16    >17      {children}18    </button>19  );20}21