UNPKG

@navinc/base-react-components

Version:
62 lines (57 loc) 2 kB
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; }; import { jsx as _jsx } from "react/jsx-runtime"; import { Children } from 'react'; import { Text } from './text.js'; import styled from 'styled-components'; export const TabGroupContainer = styled.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; } `; export const Tab = styled(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; } `; export const TabGroup = (_a) => { var { children } = _a, props = __rest(_a, ["children"]); return (_jsx(TabGroupContainer, Object.assign({ "data-testid": "tab-group" }, props, { children: Children.toArray(children).map(({ type, key, props }) => (_jsx(Tab, Object.assign({ as: type }, props), key))) }))); }; //# sourceMappingURL=tab-group.js.map