import type { ComponentMeta, ComponentStory } from '@storybook/react'; import { CentreonLogo } from './CentreonLogo'; export default { argTypes: { className: { control: false }, fill: { control: 'text' } }, component: CentreonLogo, title: 'Logo/CentreonLogo' } as ComponentMeta; const Logo: ComponentStory = (args) => ( ); export const Default = Logo.bind({}); Logo.args = {};