2023-11-08 10:54:29 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import type { Meta, StoryFn } from '@storybook/react';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import Spinner from '..';
|
|
|
|
|
|
|
|
export default {
|
2023-11-27 12:14:58 +00:00
|
|
|
title: 'External Components/Spinner',
|
2023-11-08 10:54:29 +00:00
|
|
|
component: Spinner,
|
|
|
|
} as Meta;
|
|
|
|
|
|
|
|
const Template: StoryFn = () => <Spinner />;
|
|
|
|
|
|
|
|
export const Default = Template.bind( {} );
|
|
|
|
Default.args = {};
|
|
|
|
Default.parameters = { controls: { hideNoControlsWarning: true } };
|