fui-fancyui
Version:
FancyUI Libary
59 lines (58 loc) • 1.41 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as FancyInfoCard } from '../FancyInfoCard';
declare const meta: {
component: typeof FancyInfoCard;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
themeType: {
description: string;
control: {
type: "select";
};
};
layer: {
description: string;
control: {
type: "range";
min: number;
max: number;
step: number;
};
};
outlined: {
description: string;
control: {
type: "boolean";
};
table: {
defaultValue: {
summary: string;
};
};
};
outlinedBackgroundStrength: {
description: string;
control: {
type: "range";
min: number;
max: number;
step: number;
};
table: {
defaultValue: {
summary: string;
};
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;