@navikt/aksel-icons
Version:
800+ open source icons made by Aksel, Nav's design system team.
24 lines • 2.26 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 SvgTasklistSaveFill = 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.25 3.5c0-.69.56-1.25 1.25-1.25h13c.69 0 1.25.56 1.25 1.25v7.318a.25.25 0 0 1-.427.177l-.409-.41A2 2 0 0 0 17.5 10H10a2 2 0 0 0-2 2v9q0 .203.039.395c.035.174-.087.355-.265.355H5.5c-.69 0-1.25-.56-1.25-1.25zM12.37 7a.75.75 0 0 1 .75-.75h2.5a.75.75 0 1 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75m-1.27-.8a.75.75 0 1 0-1.2-.9l-.808 1.078a.25.25 0 0 1-.377.026L8.53 6.22a.75.75 0 0 0-1.06 1.06l1 1A.75.75 0 0 0 9.6 8.2zm.9 5.3h-2a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h1.5a.25.25 0 0 0 .25-.25V17a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 .75.75v4.25c0 .138.112.25.25.25H19a.5.5 0 0 0 .5-.5v-7.5a.5.5 0 0 0-.146-.354l-1.5-1.5a.5.5 0 0 0-.354-.146H17a.25.25 0 0 0-.25.25v1.75a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1-.75-.75v-1.75a.25.25 0 0 0-.25-.25m1.5 10a.25.25 0 0 1-.25-.25V18a.25.25 0 0 1 .25-.25h2a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.25.25zm.5-10a.25.25 0 0 0-.25.25v.75c0 .138.112.25.25.25h1a.25.25 0 0 0 .25-.25v-.75a.25.25 0 0 0-.25-.25z", clipRule: "evenodd" }));
});
export default SvgTasklistSaveFill;
//# sourceMappingURL=TasklistSaveFill.js.map