fui-fancyui
Version:
FancyUI Libary
69 lines (68 loc) • 1.6 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { FancyFlexBox } from '..';
declare const meta: {
component: typeof FancyFlexBox;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
as: {
description: string;
table: {
defaultValue: {
summary: string;
};
};
control: {
type: "text";
};
};
direction: {
description: string;
control: {
type: "select";
options: (string | undefined)[];
};
};
justify: {
description: string;
control: {
type: "select";
options: (string | undefined)[];
};
};
align: {
description: string;
control: {
type: "select";
options: (string | undefined)[];
};
};
gap: {
description: string;
control: {
type: "text";
};
};
fitBox: {
description: string;
control: {
type: "boolean";
};
};
separator: {
description: string;
control: {
type: "object";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;