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