mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 20:09:11 +00:00
* feat: add skeleton masthead and generic loading page * add generic loader to picker page * smooth out spinner, add no-motion state
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
import { Hero } from '@roleypoly/design-system/atoms/hero';
|
|
import { Spinner } from './Spinner';
|
|
|
|
export default {
|
|
title: 'Atoms/Spinner',
|
|
component: Spinner,
|
|
};
|
|
|
|
export const spinner = (args) => (
|
|
<Hero>
|
|
<Spinner {...args} />
|
|
</Hero>
|
|
);
|