braid-design-system
Version:
Themeable design system for the SEEK Group
26 lines (25 loc) • 827 B
JavaScript
import { jsxs, jsx } from "react/jsx-runtime";
const IconEnlargeActiveSvg = ({
title,
titleId,
...props
}) => /* @__PURE__ */ jsxs(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: 16,
height: 16,
viewBox: "0 0 24 24",
focusable: "false",
fill: "currentColor",
"aria-labelledby": titleId,
...props,
children: [
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
/* @__PURE__ */ jsx("path", { d: "M10.382 13.077A1 1 0 0 0 10 13H6a1 1 0 1 0 0 2h1.586l-3.293 3.293a1 1 0 1 0 1.414 1.414L9 16.414V18a1 1 0 1 0 2 0v-4a.999.999 0 0 0-.618-.923Zm9.325-8.784a1 1 0 0 0-1.414 0L15 7.586V6a1 1 0 1 0-2 0v4a1 1 0 0 0 .618.923A1 1 0 0 0 14 11h4a1 1 0 1 0 0-2h-1.586l3.293-3.293a1 1 0 0 0 0-1.414Z" })
]
}
);
export {
IconEnlargeActiveSvg
};