@navikt/aksel-icons
Version:
800+ open source icons made by Aksel, Nav's design system team.
25 lines • 1.88 kB
JavaScript
"use client";
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 * as React from "react";
import { forwardRef } from "react";
import { useId } from "./util/useId.js";
const SvgHeadCloudFill = forwardRef((_a, ref) => {
var { title, titleId: _titleId } = _a, props = __rest(_a, ["title", "titleId"]);
let titleId = useId();
titleId = title ? _titleId ? _titleId : "title-" + titleId : undefined;
return React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", focusable: false, role: "img", ref: ref, "aria-labelledby": titleId }, props),
title ? React.createElement("title", { id: titleId }, title) : null,
React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M11.62 2.358c.24-.038.377.273.218.458a4.5 4.5 0 0 0-.66 1.016.27.27 0 0 1-.15.137 3.501 3.501 0 0 0 1.222 6.781h5.5c1.37 0 2.578-.688 3.3-1.738.129-.189.438-.158.488.065a8.78 8.78 0 0 1-1.731 7.422.25.25 0 0 0-.057.159V21.5a.75.75 0 0 1-.75.75h-8a.75.75 0 0 1-.75-.75V21a.25.25 0 0 0-.25-.25H8A2.75 2.75 0 0 1 5.25 18v-1a.25.25 0 0 0-.25-.25H3.5a.75.75 0 0 1-.718-.966l1.459-4.863a.3.3 0 0 0 .01-.069 8.75 8.75 0 0 1 7.37-8.494m3.63.392a3 3 0 0 0-2.959 2.5h-.041a2 2 0 1 0 0 4h5.5a2.5 2.5 0 0 0 .1-4.998 3 3 0 0 0-2.6-1.502", clipRule: "evenodd" }));
});
export default SvgHeadCloudFill;
//# sourceMappingURL=HeadCloudFill.js.map