import styled from 'styled-components'; import { cssUnitCalc } from 'utils'; export const Item = styled.div` flex: none; position: absolute; overflow: hidden; display: inline-block; `; export const ChildWrap = styled.div` overflow: hidden; display: inline-block; `; export const Wrapper = styled.div` position: relative; width: ${p => cssUnitCalc(p.width)}; height: ${p => cssUnitCalc(p.height)}; `;