Files
Rahoot/src/components/Button.jsx
2024-01-31 20:06:10 +01:00

16 lines
330 B
JavaScript

import clsx from "clsx"
export default function Button({ children, className, ...otherProps }) {
return (
<button
className={clsx(
"p-2 bg-primary rounded-md text-white font-semibold text-lg btn-shadow",
className
)}
{...otherProps}
>
<span>{children}</span>
</button>
)
}