skyfalldev/src/components/ui/Button.astro
SkyfallWasTaken 3d317a8a45 Formatting
2024-07-06 12:56:31 +01:00

14 lines
262 B
Text

---
import { twMerge } from "tailwind-merge";
const { class: className, ...rest } = Astro.props;
---
<button
class={twMerge(
"shadow-sm px-3 py-2 rounded-md bg-surface0 hover:bg-surface1 transition",
className,
)}
{...rest}
>
<slot />
</button>