decentraland-ui
Version:
Decentraland's UI components and styles
10 lines (9 loc) • 384 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
import { RangeField } from './RangeField';
declare const meta: Meta<typeof RangeField>;
export default meta;
declare type Story = StoryObj<typeof RangeField>;
export declare const Simple: Story;
export declare const CustomLabels: Story;
export declare const WithMinMaxLimits: Story;
export declare const WithCustomProps: Story;