import * as React from 'react';
import { boolean } from '@storybook/addon-knobs';
import Media from '../media';
import Ghost from './Ghost';
import notes from './Ghost.stories.md';
export const regular = () => ;
export const withoutAnimation = () => ;
export const circle = () => ;
export const rectangle = () => ;
export const pill = () => ;
export const complicatedLayout = () => (
);
export default {
title: 'Components|Ghost',
component: Ghost,
parameters: {
notes,
},
};