fui-fancyui
Version:
FancyUI Libary
57 lines (56 loc) • 1.27 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as Modal } from '../Modal';
declare const meta: {
component: typeof Modal;
title: string;
parameters: {
docs: {
description: {
component: string;
};
story: {
height: string;
};
};
};
argTypes: {
id: {
description: string;
control: {
type: "text";
};
};
isOpen: {
description: string;
control: {
type: "boolean";
};
};
onClose: {
description: string;
control: {
type: "object";
};
};
backDrop: {
description: string;
control: {
type: "boolean";
};
};
isCloseable: {
description: string;
control: {
type: "boolean";
};
table: {
defaultValue: {
summary: string;
};
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;