LocChat/client/components/common/button.jsx
2021-11-23 14:04:12 -07:00

8 lines
202 B
JavaScript

export const Button = ({ children, ...other }) => {
return (
<button className="bg-gray-600 pt-2 pb-2 pr-4 pl-4 rounded-lg font-bold text-white" {...other}>
{children}
</button>
);
};