import { Info as InfoIcon } from '@mui/icons-material'; import type { Meta, StoryObj } from '@storybook/react'; import { Tooltip } from './Tooltip'; const meta: Meta = { argTypes: { position: { control: { options: ['top', 'bottom', 'left', 'right'] } } }, component: Tooltip, parameters: { layout: 'centered' } }; export default meta; type Story = StoryObj; export const Default: Story = { args: { children: , label: 'Tooltip content' } }; export const WrappedContent: Story = { args: { children: , followCursor: false, hasCaret: true, isOpen: true, label: 'Qui deserunt pariatur quis. Duis nisi velit culpa labore ipsum reprehenderit sunt laborum anim sint quis magna consequat amet. Voluptate tempor nostrud eiusmod enim qui reprehenderit.', position: 'right' } };