mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
13 lines
250 B
Text
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>
|