fui-fancyui
Version:
FancyUI Libary
68 lines (67 loc) • 1.76 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as RawSlider } from '../RawSlider';
declare const meta: {
component: typeof RawSlider;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
value: {
description: string;
control: {
type: "number";
};
};
sizeC: {
description: string;
options: string[];
control: {
type: "select";
};
table: {
defaultValue: {
summary: string;
};
};
};
ref: {
description: string;
control: {
type: "object";
};
};
themeType: {
description: string;
control: {
type: "select";
};
options: ("primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent" | undefined)[];
table: {
defaultValue: {
summary: "primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent";
};
};
};
layer: {
description: string;
control: {
type: "range";
min: number;
max: number;
};
table: {
defaultValue: {
summary: string;
};
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;