fui-fancyui
Version:
FancyUI Libary
43 lines (42 loc) • 983 B
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyHueSlider } from '../FancyHueSlider';
declare const meta: {
component: typeof FancyHueSlider;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
hue: {
description: string;
control: {
type: "number";
min: number;
max: number;
};
};
handler: {
description: string;
action: string;
};
borderRadius: {
description: string;
control: {
type: "object";
};
};
sizeC: {
description: string;
control: {
type: "select";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;