import React from 'react' import { type Meta } from '@storybook/react' import isChromatic from 'chromatic/isChromatic' import { IconButton } from '~components/ButtonV1' import { Icon } from '~components/Icon' import { StickerSheet, type StickerSheetStory } from '~storybook/components/StickerSheet' import { Tooltip } from '../index' const IS_CHROMATIC = isChromatic() export default { title: 'Components/Tooltip/Tooltip (deprecated)', parameters: { chromatic: { disable: false }, controls: { disable: true }, }, args: { isInitiallyVisible: IS_CHROMATIC, }, tags: ['!dev'], } satisfies Meta const cellStyle = { padding: '0 50px', } const StickerSheetTemplate: StickerSheetStory = { render: (props) => (
} /> } /> } /> } /> } /> } /> } /> } /> } />
), } export const StickerSheetDefault: StickerSheetStory = { ...StickerSheetTemplate, name: 'Sticker Sheet (Default)', } export const StickerSheetRTL: StickerSheetStory = { ...StickerSheetTemplate, name: 'Sticker Sheet (RTL)', parameters: { textDirection: 'rtl', }, }