v3/src/design-system/atoms/dot-overlay/DotOverlay.stories.tsx
2020-10-10 04:36:22 -04:00

9 lines
220 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 />;