feat: add ListItem component with title and subtitle

This commit is contained in:
2026-06-04 14:07:25 +02:00
parent 4af10b10f7
commit b3ec60db5d
6 changed files with 115 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
---
import Arrow2 from "../Icons/Arrow2/Arrow2.astro"
---
<div class='list-item'>
<div class='list-item__content'>
<slot/>
</div>
<Arrow2
size={24}
orientation='right' />
</div>
<style lang="scss">
@use './listItem';
</style>