@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.
14 lines (13 loc) • 482 B
JavaScript
import styled from "styled-components";
import defaultTheme from "../../../defaultTheme";
var StyledText = styled.div.withConfig({
displayName: "StyledText",
componentId: "sc-15cerbo-0"
})(["height:", ";text-align:center;"], function (_ref) {
var theme = _ref.theme;
return theme.orbit.spaceMedium;
}); // $FlowFixMe: https://github.com/flow-typed/flow-typed/issues/3653#issuecomment-568539198
StyledText.defaultProps = {
theme: defaultTheme
};
export default StyledText;