fui-fancyui
Version:
FancyUI Libary
32 lines (31 loc) • 694 B
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyLI } from './FancyLI';
declare const meta: {
component: typeof FancyLI;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
sizeC: {
control: {
type: "select";
};
options: string[];
};
aligned: {
control: {
type: "select";
};
options: string[];
};
};
tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;