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