14 lines
289 B
Plaintext
14 lines
289 B
Plaintext
---
|
|
import { Icon } from "astro-icon/components";
|
|
---
|
|
|
|
<summary
|
|
class="cursor-pointer flex items-center justify-between px-5 gap-3 py-3"
|
|
>
|
|
<slot />
|
|
<Icon
|
|
name="chevron-down"
|
|
class="size-4 fill-white/60 shrink-0 transition duration-300 group-open:-rotate-180"
|
|
/>
|
|
</summary>
|