UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

13 lines 475 B
import styled, { css } from "styled-components"; import defaultTheme from "../../../defaultTheme"; const StyledRelative = styled.div.withConfig({ displayName: "StyledRelative", componentId: "sc-1evkvci-0" })(["position:relative;", ";"], ({ inner, theme }) => inner && css(["width:calc(100% + ", "px);display:flex;align-items:center;"], parseInt(theme.orbit.spaceSmall, 10) + 4)); StyledRelative.defaultProps = { theme: defaultTheme }; export default StyledRelative;