@amsterdam/bmi-component-library
Version:
A React component library based on ASC and Material-UI aimed at repurposing and sharing components across BMI projects
19 lines • 534 B
JavaScript
import styled from"styled-components";import{themeColor,Input}from"@amsterdam/asc-ui";import CancelIcon from"@mui/icons-material/Cancel";export const CancelIconStyle=styled(CancelIcon)`
&& {
position: absolute;
right: 4px;
top: 6px;
width: 20px;
height: 20px;
cursor: pointer;
}
`;export const InputStyle=styled(Input)`
&& {
border: 1px solid ${themeColor("tint","level5")};
height: 32px;
padding: 0 26px 0 4px;
}
`;export default styled.div`
position: relative;
`;
//# sourceMappingURL=ColumnFilterStyle.js.map