UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

84 lines (83 loc) 3.4 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.IllustrationTitleStyled = exports.IllustrationButtonStyled = exports.IllustrationStyled = void 0; const styled_components_1 = __importStar(require("styled-components")); const srOnly_mixin_1 = require("../../styles/mixins/srOnly.mixin"); const commonIllustrationStyled = (styles) => styles && (0, styled_components_1.css) ` width: ${styles.width}; height: ${styles.height}; min-width: ${styles.width}; min-height: ${styles.height}; `; exports.IllustrationStyled = styled_components_1.default.img ` ${({ customIllustrationStyles, theme: { MEDIA_QUERIES: { onlyDesktop, onlyTablet, onlyMobile }, }, }) => customIllustrationStyles && (0, styled_components_1.css) ` ${commonIllustrationStyled(customIllustrationStyles)} ${onlyDesktop} { ${commonIllustrationStyled(customIllustrationStyles.DESKTOP)} } ${onlyTablet} { ${commonIllustrationStyled(customIllustrationStyles.TABLET)} } ${onlyMobile} { ${commonIllustrationStyled(customIllustrationStyles.MOBILE)} } `} transform: rotate(${props => props.moveRound}); transition-duration: ${props => props.transitionDuration}; ${({ theme: { MEDIA_QUERIES: { onlyDesktop, onlyTablet, onlyMobile }, }, $width, $height, }) => (0, styled_components_1.css) ` ${commonIllustrationStyled({ height: $height, width: $width })} ${onlyDesktop} { ${commonIllustrationStyled({ height: $height, width: $width })} } ${onlyTablet} { ${commonIllustrationStyled({ height: $height, width: $width })} } ${onlyMobile} { ${commonIllustrationStyled({ height: $height, width: $width })} } `} `; exports.IllustrationButtonStyled = styled_components_1.default.button ` cursor: pointer; display: inline-flex; align-items: center; `; exports.IllustrationTitleStyled = styled_components_1.default.span ` ${srOnly_mixin_1.srOnlyMixin} `; //# sourceMappingURL=illustration.styled.js.map