import * as React from 'react'; import Badge from './Badge'; import notes from './Badge.stories.md'; import { BadgeType } from './types'; export const regular = () => Default Badge; export const info = () => Info Badge; export const warning = () => Warning Badge; export const highlight = () => Highlight Badge; export const error = () => Error Badge; export const alert = () => Alert Badge; export const success = () => Success Badge; export default { title: 'Components/Badges/Badge', component: Badge, parameters: { notes, }, };