import type { Meta, StoryObj } from '@storybook/vue3' import FdsLabel from './FdsLabel.vue' const meta: Meta = { title: 'FDS/Typography/FdsLabel', component: FdsLabel, tags: ['autodocs'], } export default meta type Story = StoryObj export const Default: Story = { render: () => ({ components: { FdsLabel }, template: `Label text with bold font and tracking`, }), }