braid-design-system
Version:
Themeable design system for the SEEK Group
15 lines (14 loc) • 885 B
JavaScript
;
const jsxRuntime = require("react/jsx-runtime");
const lib_components_Box_Box_cjs = require("../../Box/Box.cjs");
const lib_components_icons_IconContainer_cjs = require("../IconContainer.cjs");
const lib_components_icons_IconEnlarge_IconEnlargeActiveSvg_cjs = require("./IconEnlargeActiveSvg.cjs");
const lib_components_icons_IconEnlarge_IconEnlargeSvg_cjs = require("./IconEnlargeSvg.cjs");
const IconEnlarge = ({ active = false, ...props }) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_icons_IconContainer_cjs.IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsxRuntime.jsx(
lib_components_Box_Box_cjs.Box,
{
component: active ? lib_components_icons_IconEnlarge_IconEnlargeActiveSvg_cjs.IconEnlargeActiveSvg : lib_components_icons_IconEnlarge_IconEnlargeSvg_cjs.IconEnlargeSvg,
...svgProps
}
) });
exports.IconEnlarge = IconEnlarge;