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