fui-fancyui
Version:
FancyUI Libary
55 lines (54 loc) • 1.25 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyModalHeadLine } from '../FancyModalHeadLine';
declare const meta: {
component: typeof FancyModalHeadLine;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
alignCenter: {
description: string;
control: {
type: "boolean";
};
};
title: {
description: string;
control: {
type: "text";
};
};
subTitle: {
description: string;
control: {
type: "text";
};
};
hr: {
description: string;
control: {
type: "object";
};
};
onXButtonClick: {
description: string;
control: {
type: "object";
};
};
gapBetweenText: {
description: string;
control: {
type: "select";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;