mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
21 lines
405 B
TypeScript
21 lines
405 B
TypeScript
import { SBComp } from '#types/SBComp'
|
|
|
|
import LogoAvatar from './LogoAvatar.vue'
|
|
|
|
import type { Meta, StoryObj } from '@storybook/vue3'
|
|
|
|
const meta = {
|
|
title: 'Menu/LogoAvatar',
|
|
component: LogoAvatar as SBComp,
|
|
tags: ['autodocs'],
|
|
argTypes: {},
|
|
args: {},
|
|
} satisfies Meta<typeof LogoAvatar>
|
|
|
|
export default meta
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Example: Story = {
|
|
args: {},
|
|
}
|