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
13 lines
320 B
TypeScript
13 lines
320 B
TypeScript
import { palette } from '../colors';
|
|
import { PlaceholderBox } from './Placeholder';
|
|
|
|
export default {
|
|
title: 'Atoms/Placeholder',
|
|
component: PlaceholderBox,
|
|
args: {
|
|
firstColor: palette.taupe100,
|
|
secondColor: palette.taupe300,
|
|
},
|
|
};
|
|
|
|
export const placeholderBox = (args) => <PlaceholderBox {...args} />;
|