@navikt/aksel-icons
Version:
800+ open source icons made by Aksel, Nav's design system team.
25 lines • 2.23 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 SvgBandageFill = 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: "M8.752 2.65c.337-.056.884-.075 1.279.32l1.792 1.792a.25.25 0 0 1 0 .353l-6.707 6.707a.25.25 0 0 1-.354 0L2.97 10.03c-.395-.395-.375-.941-.319-1.278.064-.384.223-.802.429-1.213.413-.827 1.088-1.767 1.89-2.57s1.742-1.476 2.57-1.89c.41-.205.829-.364 1.212-.428M6.176 12.884a.25.25 0 0 0 0 .354l4.586 4.585a.25.25 0 0 0 .354 0l6.707-6.707a.25.25 0 0 0 0-.353l-4.586-4.586a.25.25 0 0 0-.354 0zm6 6.354a.25.25 0 0 1 0-.354l6.708-6.707a.25.25 0 0 1 .353 0l1.794 1.793c.395.396.375.942.319 1.28-.064.382-.224.8-.429 1.211-.414.828-1.088 1.768-1.89 2.57s-1.742 1.477-2.57 1.89c-.41.206-.83.365-1.212.429-.338.056-.884.076-1.279-.319zM11.25 10a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5H12a.75.75 0 0 1-.75-.75m.75 3.25a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5zM9.25 12a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5H10a.75.75 0 0 1-.75-.75m4.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5z", clipRule: "evenodd" }));
});
export default SvgBandageFill;
//# sourceMappingURL=BandageFill.js.map