import BlackTooltip from './BlackTooltip.vue' export default { title: 'The Design system/Black tooltip', component: BlackTooltip, tags: ['autodocs'], args: { isCursorTracked: false, text: 'Локальная продукция неактивна
Локальная продукция привязана к глобальной продукции, у которой ПП delisted = True
Локальная продукция привязана к глобальной продукции', bottom: false, left: false, maxWidth: 250, }, argTypes: { bottom: { options: [true, false], control: { type: 'boolean' }, }, left: { options: [true, false], control: { type: 'boolean' }, }, }, } const Template = (args: any) => ({ props: Object.keys(args), render() { return (

Наведи сюда

) }, }) export const Primary = Template.bind({})