@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.
16 lines (15 loc) • 548 B
JavaScript
;
exports.__esModule = true;
exports.getBorderRadiusMobile = exports.getBorderRadius = exports.getBorder = void 0;
const getBorder = ({
theme
}) => `${theme.orbit.borderWidthCard} ${theme.orbit.borderStyleCard} ${theme.orbit.borderColorCard}`;
exports.getBorder = getBorder;
const getBorderRadius = ({
theme
}) => `${theme.orbit.borderRadiusNormal}`;
exports.getBorderRadius = getBorderRadius;
const getBorderRadiusMobile = ({
theme
}) => `${theme.orbit.borderRadiusLarge}`;
exports.getBorderRadiusMobile = getBorderRadiusMobile;