import { colors } from '@0xproject/react-shared'; import * as React from 'react'; export interface RequiredLabelProps { label: string | React.ReactNode; } export const RequiredLabel = (props: RequiredLabelProps) => { return ( {props.label} * ); };