LocChat/client/components/common/button.jsx

8 lines
202 B
React
Raw Normal View History

2021-11-23 16:04:12 -05:00
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>
);
};