fui-fancyui
Version:
FancyUI Libary
39 lines (38 loc) • 901 B
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyTextOverlay } from '../FancyTextOverlay';
declare const meta: {
component: typeof FancyTextOverlay;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
externalStyle: {
description: string;
};
position: {
description: string;
control: {
type: "select";
};
table: {
defaultValue: {
summary: string;
};
};
};
children: {
description: string;
};
textChildren: {
description: string;
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;