fui-fancyui
Version:
FancyUI Libary
48 lines (47 loc) • 1.09 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancySpacingBox } from '../FancySpacingBox';
declare const meta: {
component: typeof FancySpacingBox;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
padding: {
description: string;
control: {
type: "text";
};
};
margin: {
description: string;
control: {
type: "text";
};
};
externalStyle: {
description: string;
control: {
type: "object";
};
};
as: {
description: string;
control: {
type: "text";
};
table: {
defaultValue: {
summary: string;
};
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;