import { Fragment } from 'react'; import type { Meta, StoryObj } from '@storybook/react-vite'; import { CircleHelpIcon } from 'lucide-react'; import { Button } from '../Button/Button.tsx'; import { Input } from '../Input/Input.tsx'; import { Label } from '../Label/Label.tsx'; import { Popover } from './Popover.tsx'; type Story = StoryObj; export default { component: Popover, parameters: { layout: 'centered' }, tags: ['autodocs'] } as Meta; export const Form: Story = { args: { children: (

Dimensions

Set the dimensions for the layer.

) } }; export const Icon: Story = { args: { children: ( Hello World ) } };