Files
Yusron alamsyah 6bb6a1d430 first commit
2026-03-13 10:45:28 +07:00

51 lines
2.1 KiB
Vue

<template>
<v-row>
<v-col cols="12">
<SharedUiChildCard title="Chip">
<v-row>
<v-col cols="6">
<SharedUiChildCard title="Filled Color">
<ui-components-chip-filled-color />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Outlined">
<ui-components-chip-outlined />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Closable">
<ui-components-chip-closable />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Disabled">
<ui-components-chip-disabled />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Sizes">
<ui-components-chip-sizes />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Custom Icon">
<ui-components-chip-custom-icon />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Custom Icon Outlined">
<ui-components-chip-custom-icon-outlined />
</SharedUiChildCard>
</v-col>
<v-col cols="6">
<SharedUiChildCard title="Label Chip">
<ui-components-chip-label-chip />
</SharedUiChildCard>
</v-col>
</v-row>
</SharedUiChildCard>
</v-col>
</v-row>
</template>