1
0
Fork 0
forked from swablab/website
website/src/components/Steps.astro
2025-02-22 16:59:06 +00:00

10 lines
209 B
Text

---
export interface Props {
items: string[]
}
const { items }: Props = Astro.props
---
<ul class="steps steps-vertical">
{items.map((item) => <li class="!text-left step step-primary">{item}</li>)}
</ul>