import { Meta, StoryObj } from '@storybook/react'; import { Button, Flex, Text, Tooltip } from '..'; import { ChatCenteredDots } from '@phosphor-icons/react'; const meta: Meta = { title: 'Opize Component/Tooltip', component: Tooltip, tags: ['autodocs'], parameters: { layout: 'centered', }, }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { content: 'text', }, render: (args) => ( Element ), }; export const WithNode: Story = { args: { content: ( Comment ), }, render: (args) => ( Element ), }; export const WithButton: Story = { args: { content: ( Comment ), }, render: (args) => ( ), };