fui-fancyui
Version:
FancyUI Libary
65 lines (64 loc) • 1.47 kB
TypeScript
import { StoryObj } from '@storybook/react';
import { default as LoadingSVGArrows } from './LoadingSVGArrows';
declare const meta: {
component: typeof LoadingSVGArrows;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
isActive: {
control: {
type: "boolean";
};
};
isLoading: {
control: {
type: "boolean";
};
};
themeType: {
control: {
type: "select";
};
options: string[];
};
layer: {
control: {
type: "range";
min: number;
max: number;
step: number;
};
};
sizeC: {
control: {
type: "select";
};
};
systemMessage: {
type: {
name: "string";
required: false;
};
control: {
type: "select";
};
options: (string | undefined)[];
};
isPassive: {
description: string;
control: {
type: "boolean";
};
};
};
tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;