import React, { FC } from 'react' export interface LabelProps { /** * Set this to do the thing * @default info */ text: string } const Label: FC = ({ text, ...props }) => (
{text}
) export default Label