fui-fancyui
Version:
FancyUI Libary
45 lines (44 loc) • 1.04 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyGridItem } from '../FancyGridItem';
declare const meta: {
component: typeof FancyGridItem;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
gridSpace: {
description: string;
defaultValue: string;
control: {
type: "number";
};
};
breakpoints: {
description: string;
defaultValue: never[];
control: {
type: "object";
};
};
gridColumn: {
description: string;
control: {
type: "text";
};
};
gridRow: {
description: string;
control: {
type: "text";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;