import React from 'react'
import { type Meta } from '@storybook/react'
import { Text } from '~components/Text'
import { StickerSheet, type StickerSheetStory } from '~storybook/components/StickerSheet'
import { Tab, TabList, TabPanel, Tabs } from '../index'
export default {
title: 'Components/Tabs',
parameters: {
chromatic: { disable: false },
controls: { disable: true },
},
} satisfies Meta
const ExampleTabs = ({ id }: { id: string }): JSX.Element => (
Tab 1
Tab 2
Tab 3
Disabled Tab
Tab 4
Tab 5
Content 1
Content 2
Content 3
Disabled content
Content 4
Content 5
)
const StickerSheetTemplate: StickerSheetStory = {
render: () => {
return (
<>
>
)
},
}
export const StickerSheetDefault: StickerSheetStory = {
...StickerSheetTemplate,
name: 'Sticker Sheet (Default)',
}
export const StickerSheetRTL: StickerSheetStory = {
...StickerSheetTemplate,
name: 'Sticker Sheet (RTL)',
parameters: {
...StickerSheetTemplate.parameters,
textDirection: 'rtl',
},
}