Repository URL to install this package:
|
Version:
2.0.4 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
}); // https://github.com/jacob-ebey/styled-components-ts
// https://github.com/styled-components/styled-components/issues/630
const div = styled.div;
const NoHighlight = div`
${props => props.colSpan && props.totalColumns && styled.css`
width: ${props.colSpan / props.totalColumns * 100}%;
`}
`;
const LongerButEasy = styled.div`
${props => props.colSpan && props.totalColumns && styled.css`
width: ${props.colSpan / props.totalColumns * 100}%;
`};
`; //# sourceMappingURL=validating.js.map