3660ba28d
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import * as React from 'react'; import {colors} from 'material-ui/styles'; export interface RequiredLabelProps { label: string|React.ReactNode; } export const RequiredLabel = (props: RequiredLabelProps) => { return ( <span> {props.label} <span style={{color: colors.red600}}>*</span> </span> ); };