import * as React from 'react';
import RadarAnimation, { RadarAnimationPosition } from './RadarAnimation';
import Button from '../button';
import notes from './RadarAnimation.stories.md';
export const bottomLeft = () => (
);
export const bottomCenter = () => (
);
export const bottomRight = () => (
);
export const middleLeft = () => (
);
export const middleCenter = () => (
);
export const middleRight = () => (
);
export const topLeft = () => (
);
export const topCenter = () => (
);
export const topRight = () => (
);
export const withOffset = () => (
);
export default {
title: 'Components|RadarAnimation',
component: RadarAnimation,
parameters: {
notes,
},
};