@navikt/aksel-icons
Version:
800+ open source icons made by Aksel, Nav's design system team.
25 lines • 2.2 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 SvgTrayFood = 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: "M9.444 5.497A.75.75 0 0 1 10 5.25h5a.75.75 0 0 1 .746.825l-.355 3.554a.75.75 0 1 1-1.493-.149l.273-2.73H10.83l.493 4.933a.75.75 0 0 1-1.492.15l-.576-5.758a.75.75 0 0 1 .19-.578M4.75 7a.75.75 0 0 0-1.5 0v.382c0 .663.374 1.269.967 1.565l.895.447a.25.25 0 0 1 .138.224V10a.75.75 0 0 0 1.5 0v-.382a1.75 1.75 0 0 0-.967-1.565l-.895-.447a.25.25 0 0 1-.138-.224zm-1.812 4.504a.75.75 0 0 1 .562-.254h5a.75.75 0 0 1 .744.843l-.28 2.248a2.75 2.75 0 0 1-2.73 2.409h-.468a2.75 2.75 0 0 1-2.73-2.409l-.28-2.248a.75.75 0 0 1 .182-.59M4.35 12.75l.175 1.405a1.25 1.25 0 0 0 1.24 1.095h.47c.63 0 1.162-.47 1.24-1.095l.175-1.405zM2.25 18a.75.75 0 0 1 .75-.75h18a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75m13.25-6.75a4.75 4.75 0 0 0-4.695 4.026A.75.75 0 0 0 11 16.75h9a.75.75 0 0 0 .195-1.474A4.75 4.75 0 0 0 15.5 11.25m0 1.5a3.25 3.25 0 0 0-3.163 2.5h6.326a3.25 3.25 0 0 0-3.163-2.5", clipRule: "evenodd" }));
});
export default SvgTrayFood;
//# sourceMappingURL=TrayFood.js.map