import React from 'react'; import {styled} from '@storybook/theming'; const Status = styled.span` margin-left: 8px; `; // @ts-ignore TS7031 // eslint-disable-next-line react/prop-types const Label = ({children, status}) => { return (
{children} {status}
); }; export {Label};