fui-fancyui
Version:
FancyUI Libary
31 lines (30 loc) • 694 B
TypeScript
import { StoryObj } from '@storybook/react';
import { default as SliderMarker } from '../SliderMarker';
declare const meta: {
component: typeof SliderMarker;
title: string;
parameters: {
docs: {
description: {
component: string;
};
};
};
argTypes: {
position: {
description: string;
control: {
type: "text";
};
};
children: {
description: string;
control: {
type: "text";
};
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Primary: Story;