UNPKG

@navinc/base-react-components

Version:
69 lines (64 loc) 2.46 kB
"use strict"; var __rest = (this && this.__rest) || function (s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.TabGroup = exports.Tab = exports.TabGroupContainer = void 0; const jsx_runtime_1 = require("react/jsx-runtime"); const react_1 = require("react"); const text_js_1 = require("./text.js"); const styled_components_1 = __importDefault(require("styled-components")); exports.TabGroupContainer = styled_components_1.default.nav.withConfig({ displayName: "brc-sc-TabGroupContainer", componentId: "brc-sc-yx3ntt" }) ` width: 100%; display: flex; flex-flow: row nowrap; border-bottom: 1px solid ${({ theme }) => theme.navNeutral200}; padding-top: 16px; & > * { padding: 8px 0 16px; margin-right: 48px; } & > *:last-child { margin-right: 0; } button { border-bottom-width: 0; font-weight: 600; } `; exports.Tab = (0, styled_components_1.default)(text_js_1.Text).withConfig({ shouldForwardProp: (prop) => !['isActive'].includes(prop), }) ` position: relative; color: ${({ theme, isActive }) => (isActive ? theme.navPrimary400 : theme.navNeutral400)}; &:hover { color: ${({ theme }) => theme.navPrimary400}; } &::after { content: ''; width: 100%; height: 4px; background-color: ${({ isActive, theme }) => (isActive ? theme.navPrimary400 : 'transparent')}; border-radius: 2px; position: absolute; bottom: 0; left: 0; } `; const TabGroup = (_a) => { var { children } = _a, props = __rest(_a, ["children"]); return ((0, jsx_runtime_1.jsx)(exports.TabGroupContainer, Object.assign({ "data-testid": "tab-group" }, props, { children: react_1.Children.toArray(children).map(({ type, key, props }) => ((0, jsx_runtime_1.jsx)(exports.Tab, Object.assign({ as: type }, props), key))) }))); }; exports.TabGroup = TabGroup; //# sourceMappingURL=tab-group.js.map