@navikt/aksel-icons
Version:
800+ open source icons made by Aksel, Nav's design system team.
25 lines • 2.15 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 SvgMotorcycle = 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.378 9.25a2.25 2.25 0 0 1 2.015-1.498l-.59-1.473A.75.75 0 0 1 13.5 5.25h.5A5.75 5.75 0 0 1 19.75 11v.5a.75.75 0 0 1-.75.75h-1q-.3 0-.588.046l.361.963q.112-.009.227-.009a2.75 2.75 0 1 1-1.631.536l-.361-.963A3.75 3.75 0 0 0 14.25 16a.75.75 0 0 1-.75.75H8.646a2.751 2.751 0 1 1 0-1.5h1.029a3.75 3.75 0 0 0-3.675-3h-.5a.75.75 0 0 1-.67-.415l-1.5-3A.75.75 0 0 1 4 7.75h1.879c1.45 0 2.845.537 3.92 1.5zm3.248-2.454c1.97.29 3.5 1.933 3.617 3.954H18a5.25 5.25 0 0 0-5.197 4.5h-1.606A5.25 5.25 0 0 0 6 10.75h-.036l-.75-1.5h.665c1.159 0 2.27.46 3.09 1.28a.75.75 0 0 0 .531.22H12a.75.75 0 0 0 .75-.75.75.75 0 0 1 .75-.75h.983a.74.74 0 0 0 .638-.33.75.75 0 0 0 .069-.714zM6 14.75c.409 0 .772.196 1 .5H6a.75.75 0 0 0 0 1.5h1a1.25 1.25 0 1 1-1-2m10.947.577a1.25 1.25 0 1 0 1.404-.527l.351.937a.75.75 0 1 1-1.404.526z", clipRule: "evenodd" }));
});
export default SvgMotorcycle;
//# sourceMappingURL=Motorcycle.js.map