ohmyform-ui/components/styled/date.input.tsx
2020-05-31 23:18:16 +02:00

52 lines
1.2 KiB
TypeScript

import {DatePicker} from 'antd'
import {PickerProps} from 'antd/lib/date-picker/generatePicker'
import {Moment} from 'moment'
import React from 'react'
import styled from 'styled-components'
import {FormDesignFragment} from '../../graphql/fragment/form.fragment'
import {transparentize} from './color.change'
type Props = { design: FormDesignFragment } & PickerProps<Moment>
const Field = styled(DatePicker)`
color: ${props => props.design.colors.answerColor};
border-color: ${props => props.design.colors.answerColor};
background: none !important;
border-right: none;
border-top: none;
border-left: none;
border-radius: 0;
width: 100%;
:hover,
:active {
border-color: ${props => props.design.colors.answerColor};
}
&.ant-picker {
box-shadow: none
}
.ant-picker-clear {
background: none;
}
input {
color: ${props => props.design.colors.answerColor};
::placeholder {
color: ${props => transparentize(props.design.colors.answerColor, 60)}
}
}
.anticon {
color: ${props => props.design.colors.answerColor};
}
`
export const StyledDateInput: React.FC<Props> = ({children, ...props}) => {
return (
<Field {...props}>{children}</Field>
)
}