@navikt/aksel-icons
Version:
800+ open source icons made by Aksel, Nav's design system team.
60 lines • 3.7 kB
JavaScript
;
"use client";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
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;
};
Object.defineProperty(exports, "__esModule", { value: true });
const React = __importStar(require("react"));
const react_1 = require("react");
const useId_1 = require("./util/useId");
const SvgSpeakerSlashFill = (0, react_1.forwardRef)((_a, ref) => {
var { title, titleId: _titleId } = _a, props = __rest(_a, ["title", "titleId"]);
let titleId = (0, useId_1.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: "M20.53 4.53a.75.75 0 0 0-1.06-1.06l-16 16a.75.75 0 1 0 1.06 1.06zM9.563 18.011a.25.25 0 0 1-.02-.372l2.78-2.78a.25.25 0 0 1 .427.177V19a.75.75 0 0 1-1.219.586zm9.775-10.167a.255.255 0 0 0-.043.3c.61 1.15.955 2.463.955 3.856 0 2.28-.924 4.341-2.418 5.835a.75.75 0 0 0 1.06 1.061A9.72 9.72 0 0 0 21.75 12a9.7 9.7 0 0 0-1.288-4.847.244.244 0 0 0-.385-.048zm-2.28 2.28a.26.26 0 0 0-.06.261c.163.509.252 1.052.252 1.615 0 1.45-.587 2.763-1.54 3.714a.75.75 0 1 0 1.06 1.061A6.73 6.73 0 0 0 18.75 12a6.7 6.7 0 0 0-.514-2.588.24.24 0 0 0-.394-.072zm-2.502 2.502a.26.26 0 0 0-.066.114 2.66 2.66 0 0 1-.676 1.142.75.75 0 1 0 1.06 1.061 4.15 4.15 0 0 0 1.204-3.311c-.018-.199-.255-.273-.396-.132zm-1.88-4.485a.25.25 0 0 0 .074-.177V5a.75.75 0 0 0-1.219-.586L6.805 8.195a.25.25 0 0 1-.156.055H3a.75.75 0 0 0-.75.75v6c0 .414.336.75.75.75h1.964a.25.25 0 0 0 .177-.073z", clipRule: "evenodd" }));
});
exports.default = SvgSpeakerSlashFill;
//# sourceMappingURL=SpeakerSlashFill.js.map