@chayns-components/core
Version:
A set of beautiful React components for developing your own applications with chayns.
36 lines (31 loc) • 1.59 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.StyledTooltipChildren = exports.StyledTooltip = void 0;
var _styledComponents = _interopRequireWildcard(require("styled-components"));
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
const StyledTooltip = exports.StyledTooltip = _styledComponents.default.div``;
const StyledTooltipChildren = exports.StyledTooltipChildren = _styledComponents.default.div`
display: flex;
${({
$shouldUseChildrenWidth
}) => $shouldUseChildrenWidth && (0, _styledComponents.css)`
width: fit-content;
`}
${({
$shouldUseFullWidth
}) => $shouldUseFullWidth && (0, _styledComponents.css)`
width: 100%;
`};
${({
$isOnlyText,
theme
}) => $isOnlyText && (0, _styledComponents.css)`
line-height: normal;
border-bottom-width: 1px;
border-bottom-style: dotted;
border-bottom-color: ${theme.text};
`}
`;
//# sourceMappingURL=Tooltip.styles.js.map