@braineet/ui
Version:
Braineet design system
23 lines • 828 B
JavaScript
import styled from 'styled-components';
import Button from '../../button';
import Input from '../../input';
export var DateIcon = styled(Button).withConfig({
displayName: "DatePickerstyles__DateIcon",
componentId: "sc-1napix3-0"
})(["position:absolute;right:", ";top:", ";bottom:", ";background-color:", ";"], function (p) {
return p.theme.spaces.sm;
}, function (p) {
return p.theme.spaces.sm;
}, function (p) {
return p.theme.spaces.sm;
}, function (props) {
return props.theme.colors.brand;
});
export var InputDate = styled(Input).withConfig({
displayName: "DatePickerstyles__InputDate",
componentId: "sc-1napix3-1"
})(["padding-right:38px;"]);
export var ArrowButton = styled(Button).withConfig({
displayName: "DatePickerstyles__ArrowButton",
componentId: "sc-1napix3-2"
})(["width:24px;height:24px;"]);