Files
Alpha/src/components/ui/typography/TypographyList.vue
T

15 lines
290 B
Vue

<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<ul :class="cn('my-6 ml-6 list-disc [&>li]:mt-2', props.class)">
<slot />
</ul>
</template>