@kadconsulting/dry
Version:
KAD Reusable Component Library
13 lines (12 loc) • 467 B
TypeScript
/// <reference types="react" />
import type { StoryObj } from '@storybook/react';
import type { LoadingSpinnerProps } from './LoadingSpinnerTypes';
declare const _default: {
title: string;
tags: string[];
component: import("react").ForwardRefExoticComponent<LoadingSpinnerProps & import("react").RefAttributes<HTMLDivElement>>;
argTypes: {};
};
export default _default;
type Story = StoryObj<LoadingSpinnerProps>;
export declare const Default: Story;