decentraland-ui
Version:
Decentraland's UI components and styles
12 lines (11 loc) • 445 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
import { Segment } from './Segment';
import './Segment.stories.css';
declare const meta: Meta<typeof Segment>;
export default meta;
declare type Story = StoryObj<typeof Segment>;
export declare const SingleSegment: Story;
export declare const WithField: Story;
export declare const WithFieldDisabled: Story;
export declare const WithRadios: Story;
export declare const WithButtons: Story;