Files
chatwoot/app/javascript/dashboard/components-next/Label/story/Label.story.vue
2024-11-21 13:57:43 -08:00

22 lines
419 B
Vue

<script setup>
import Label from '../LabelItem.vue';
import { label } from './fixtures';
</script>
<template>
<Story title="Components/Label/Label item">
<Variant title="Default">
<Label :label="label" />
</Variant>
<Variant title="Custom Label">
<Label
:label="{
title: 'Custom Label',
color: '#FF5733',
}"
/>
</Variant>
</Story>
</template>