@navikt/aksel-icons
Version:
800+ open source icons made by Aksel, Nav's design system team.
26 lines • 2.05 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 React, { forwardRef } from "react";
import { useId } from "./util/useId.js";
const SvgArrowsAllDirections = 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", d: "M14.263 6.194 12 3.93 9.737 6.194a.8.8 0 1 1-1.131-1.131l2.828-2.829a.8.8 0 0 1 1.132 0l2.828 2.829a.8.8 0 1 1-1.131 1.13M17.806 14.263 20.07 12l-2.263-2.263a.8.8 0 1 1 1.131-1.131l2.829 2.829a.8.8 0 0 1 0 1.13l-2.829 2.829a.8.8 0 1 1-1.13-1.131M14.263 17.806 12 20.07l-2.263-2.263a.8.8 0 1 0-1.131 1.131l2.828 2.829a.8.8 0 0 0 1.132 0l2.828-2.829a.8.8 0 1 0-1.131-1.13M6.194 14.263 3.93 12l2.263-2.263a.8.8 0 1 0-1.131-1.131l-2.829 2.829a.8.8 0 0 0 0 1.13l2.829 2.829a.8.8 0 1 0 1.13-1.131" }),
React.createElement("path", { fill: "currentColor", d: "M12.75 19.633a.75.75 0 0 1-1.5 0v-16a.75.75 0 0 1 1.5 0z" }),
React.createElement("path", { fill: "currentColor", d: "M4.367 12.75a.75.75 0 0 1 0-1.5h16a.75.75 0 1 1 0 1.5z" }));
});
export default SvgArrowsAllDirections;
//# sourceMappingURL=ArrowsAllDirections.js.map