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
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
import * as React from 'react';
|
|
import { DotOverlay } from './DotOverlay';
|
|
|
|
export default {
|
|
title: 'Atoms/Dot Overlay',
|
|
};
|
|
|
|
export const Dark = () => <DotOverlay />;
|
|
export const Light = () => <DotOverlay light />;
|
|
export const Skeleton = () => <DotOverlay skeleton />;
|