braid-design-system
Version:
Themeable design system for the SEEK Group
22 lines (21 loc) • 775 B
JavaScript
;
const jsxRuntime = require("react/jsx-runtime");
const IconHomeSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
xmlSpace: "preserve",
focusable: "false",
fill: "currentColor",
width: 16,
height: 16,
"aria-labelledby": titleId,
...props,
children: [
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m20.7 9.2-8-7c-.4-.3-.9-.3-1.3 0l-8 7c-.3.2-.4.5-.4.8v11c0 .6.4 1 1 1h16c.6 0 1-.4 1-1V10c0-.3-.1-.6-.3-.8zM19 20h-5v-4c0-.6-.4-1-1-1h-2c-.6 0-1 .4-1 1v4H5v-9.5l7-6.1 7 6.1V20z" })
]
}
);
exports.IconHomeSvg = IconHomeSvg;