import * as React from 'react';
import Label from './Label';
import notes from './Label.stories.md';
export const basic = () => (
);
export const withOptionalText = () => (
);
export const withInfoTooltip = () => (
);
export default {
title: 'Components/Label',
component: Label,
parameters: {
notes,
},
};