UNPKG

fui-fancyui

Version:
48 lines (47 loc) 1.09 kB
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;