fui-fancyui
Version:
FancyUI Libary
77 lines (76 loc) • 1.78 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyGrid } from '../FancyGrid';
declare const meta: {
component: typeof FancyGrid;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
simpleGrid: {
description: string;
defaultValue: string;
control: {
type: "number";
};
};
gap: {
description: string;
defaultValue: string;
control: {
type: "text";
};
};
breakpoints: {
description: string;
defaultValue: never[];
control: {
type: "object";
};
};
margin: {
description: string;
control: {
type: "object";
};
};
padding: {
description: string;
control: {
type: "object";
};
};
gridTemplateColumns: {
description: string;
control: {
type: "object";
};
};
gridTemplateRows: {
description: string;
control: {
type: "object";
};
};
rowGap: {
description: string;
control: {
type: "select";
};
};
columnGap: {
description: string;
control: {
type: "select";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;
export declare const Secondary: Story;