blob: 1e8719a2cb21d4e0662e013cc6ab5e3f723ff0a5 (
plain)
1
2
3
4
5
6
7
|
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>
);
};
|