import type { Meta, StoryFn } from '@storybook/react' import { SvgCog2, SvgDashboard1, SvgRocket } from '@chainlink/blocks-icons' import { createSizeDecorator } from '../../utils/decorators' import { Tabs, TabsContent, TabsList, TabsTrigger } from './Tabs' export default { title: 'Blocks/Tabs', component: Tabs, decorators: [createSizeDecorator('XS')], } satisfies Meta export const Default: StoryFn = (_args) => ( Runs Deployments View your runs here View your deployments here ) export const MultipleOptions: StoryFn = (_args) => ( Overview Analytics Reports Settings Overview content with key metrics and summaries Analytics dashboard with charts and graphs Reports section with downloadable documents Settings panel for configuration options ) export const WithIcons: StoryFn = (_args) => ( Overview Settings Overview content with key metrics and summaries Settings panel for configuration options ) export const WithDisabledTab: StoryFn = (_args) => ( Runs Deployments View your runs here View your deployments here )