@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.
24 lines (17 loc) • 592 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: 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;