soc_site-astro/src/components/header/NavButton.astro
Jorge Vargas 0ec019f959
Some checks failed
/ build (push) Failing after 4m39s
update
2025-03-15 20:48:11 -06:00

13 lines
250 B
Text

---
const { class: className, ...rest } = Astro.props
---
<button
class:list={[
'w-full md:w-fit md:h-full bg-dark hover:bg-gray py-3.5 md:py-1 px-2 rounded-none text-left md:text-center',
className
]}
{...rest}
>
<slot />
</button>