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 416 B
import styled, { css } from "styled-components"; import defaultTheme from "../../../defaultTheme"; const StyledText = styled.div.withConfig({ displayName: "StyledText", componentId: "sc-1211qmi-0" })(["", ";"], ({ theme, active }) => css(["> p{color:", ";}"], active ? theme.orbit.paletteInkDark : theme.orbit.paletteInkLight)); StyledText.defaultProps = { theme: defaultTheme }; export default StyledText;