fui-fancyui
Version:
FancyUI Libary
50 lines (49 loc) • 1.16 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { CheckerBoardPattern } from '.';
declare const meta: {
component: typeof CheckerBoardPattern;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
opacity: {
description: string;
control: {
type: "range";
min: number;
max: number;
step: number;
};
table: {
defaultValue: {
summary: string;
};
};
};
color: {
description: string;
control: {
type: "color";
};
table: {
defaultValue: {
summary: string;
};
};
};
externalStyle: {
description: string;
control: {
type: "object";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;