@navikt/aksel-icons
Version:
800+ open source icons made by Aksel, Nav's design system team.
25 lines • 1.9 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 SvgQuietZone = 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: "M4 3.25a.75.75 0 0 0-.75.75v16c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75V4a.75.75 0 0 0-.75-.75zm3.333 12.644a2.75 2.75 0 0 0-2.083 2.668v.688h-.5V4.75h9.253l-1.333 2.4a1.75 1.75 0 0 0 1.53 2.6h1.05V14A2.75 2.75 0 0 0 18 16.75h1.25v2.5h-5.5V12.5a2.25 2.25 0 0 0-4.5 0v2.914zm.364 1.455a1.25 1.25 0 0 0-.947 1.213v.688h5.5V12.5a.75.75 0 0 0-1.5 0V16a.75.75 0 0 1-.568.728zM18.75 12a.75.75 0 0 1-.75.75h-1.25V14c0 .69.56 1.25 1.25 1.25h1.25V4.75h-3.543a1 1 0 0 1-.051.114L13.98 7.88a.25.25 0 0 0 .219.371H16a.75.75 0 0 1 .75.75v2.25H18a.75.75 0 0 1 .75.75", clipRule: "evenodd" }));
});
export default SvgQuietZone;
//# sourceMappingURL=QuietZone.js.map