Make the default Date input icons less prominent

This commit is contained in:
domyen 2020-06-20 17:52:45 -04:00
parent b7c6344e47
commit bfd714ab9c

View File

@ -46,7 +46,12 @@ const FlexSpaced = styled.div({
marginLeft: 0,
},
});
const FlexInput = styled(Form.Input)({ flex: 1 });
const FlexInput = styled(Form.Input)({
flex: 1,
'&::-webkit-calendar-picker-indicator': {
opacity: 0.5,
},
});
export type DateProps = ControlProps<DateValue> & DateConfig;
export const DateControl: FC<DateProps> = ({ name, value, onChange }) => {