v3/packages/design-system/atoms/dot-overlay/DotOverlay.stories.tsx
Katalina e0fcfc310e
feat: add skeleton masthead and generic loading page (#182)
* feat: add skeleton masthead and generic loading page

* add generic loader to picker page

* smooth out spinner, add no-motion state
2021-03-15 19:51:56 -04:00

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 />;