@navikt/aksel-icons 3.2.1 → 3.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/metadata.js +1 -1
- package/dist/react/cjs/FileParagraph.js +48 -0
- package/dist/react/cjs/FileParagraphFill.js +48 -0
- package/dist/react/cjs/FilePlus.js +48 -0
- package/dist/react/cjs/FilePlusFill.js +48 -0
- package/dist/react/cjs/InformationSquare.js +1 -1
- package/dist/react/cjs/InformationSquareFill.js +1 -1
- package/dist/react/cjs/index.js +19 -11
- package/dist/react/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/react/esm/FileParagraph.d.ts +7 -0
- package/dist/react/esm/FileParagraph.js +23 -0
- package/dist/react/esm/FileParagraphFill.d.ts +7 -0
- package/dist/react/esm/FileParagraphFill.js +23 -0
- package/dist/react/esm/FilePlus.d.ts +7 -0
- package/dist/react/esm/FilePlus.js +23 -0
- package/dist/react/esm/FilePlusFill.d.ts +7 -0
- package/dist/react/esm/FilePlusFill.js +23 -0
- package/dist/react/esm/InformationSquare.js +1 -1
- package/dist/react/esm/InformationSquareFill.js +1 -1
- package/dist/react/esm/index.d.ts +4 -0
- package/dist/react/esm/index.js +4 -0
- package/dist/react/esm/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/svg/FileParagraph.svg +3 -0
- package/dist/svg/FileParagraphFill.svg +3 -0
- package/dist/svg/FilePlus.svg +3 -0
- package/dist/svg/FilePlusFill.svg +3 -0
- package/dist/svg/InformationSquare.svg +1 -1
- package/dist/svg/InformationSquareFill.svg +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgFileParagraph: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & SVGRProps & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default SvgFileParagraph;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
import * as React from "react";
|
|
13
|
+
import { forwardRef } from "react";
|
|
14
|
+
import { useId } from "./util/useId";
|
|
15
|
+
const SvgFileParagraph = forwardRef((_a, ref) => {
|
|
16
|
+
var { title, titleId: _titleId } = _a, props = __rest(_a, ["title", "titleId"]);
|
|
17
|
+
let titleId = useId();
|
|
18
|
+
titleId = title ? (_titleId ? _titleId : "title-" + titleId) : undefined;
|
|
19
|
+
return (React.createElement("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", focusable: false, role: "img", ref: ref, "aria-labelledby": titleId }, props),
|
|
20
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
21
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.75 4.75v14.5h10.5V8.75H14.5c-.69 0-1.25-.56-1.25-1.25V4.75h-6.5Zm8 1.06 1.44 1.44h-1.44V5.81ZM5.25 4.5c0-.69.56-1.25 1.25-1.25H14a.75.75 0 0 1 .53.22l4 4c.141.14.22.331.22.53v11.5c0 .69-.56 1.25-1.25 1.25h-11c-.69 0-1.25-.56-1.25-1.25v-15Zm4.716 6.526a2.027 2.027 0 0 1 3.488-1.405.75.75 0 0 1-1.08 1.041.526.526 0 1 0-.583.85l1.911.786a1.833 1.833 0 0 1 .238 3.272 2.027 2.027 0 1 1-3.906 1.09.75.75 0 0 1 1.45-.385.527.527 0 1 0 .713-.62l-1.911-.786a1.833 1.833 0 0 1-.238-3.272 2.022 2.022 0 0 1-.082-.571Zm.89 2.456 1.791.737a.64.64 0 0 1 .027.01l.218.078a.333.333 0 0 0 .24-.622l-1.792-.737a.928.928 0 0 1-.026-.009l-.218-.078a.333.333 0 0 0-.24.621Z", fill: "currentColor" })));
|
|
22
|
+
});
|
|
23
|
+
export default SvgFileParagraph;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgFileParagraphFill: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & SVGRProps & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default SvgFileParagraphFill;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
import * as React from "react";
|
|
13
|
+
import { forwardRef } from "react";
|
|
14
|
+
import { useId } from "./util/useId";
|
|
15
|
+
const SvgFileParagraphFill = forwardRef((_a, ref) => {
|
|
16
|
+
var { title, titleId: _titleId } = _a, props = __rest(_a, ["title", "titleId"]);
|
|
17
|
+
let titleId = useId();
|
|
18
|
+
titleId = title ? (_titleId ? _titleId : "title-" + titleId) : undefined;
|
|
19
|
+
return (React.createElement("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", focusable: false, role: "img", ref: ref, "aria-labelledby": titleId }, props),
|
|
20
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
21
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.25 7.5v-4a.25.25 0 0 0-.25-.25H6.5c-.69 0-1.25.56-1.25 1.25v15c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25V9a.25.25 0 0 0-.25-.25h-4c-.69 0-1.25-.56-1.25-1.25ZM15 7.25a.25.25 0 0 1-.25-.25V4.293a.25.25 0 0 1 .427-.177l2.707 2.707a.25.25 0 0 1-.177.427H15Zm-5.034 3.776a2.027 2.027 0 0 1 3.488-1.405.75.75 0 0 1-1.08 1.041.526.526 0 1 0-.583.85l1.911.786a1.833 1.833 0 0 1 .4 3.164.301.301 0 0 0-.117.297 2.025 2.025 0 0 1-1.99 2.408 2.03 2.03 0 0 1-1.961-1.507.75.75 0 0 1 1.45-.385.527.527 0 1 0 .713-.62l-1.911-.786a1.833 1.833 0 0 1-.4-3.164.301.301 0 0 0 .116-.296 2.029 2.029 0 0 1-.036-.383Zm.89 2.456 1.791.737a.64.64 0 0 1 .027.01l.218.078a.333.333 0 0 0 .24-.622l-1.792-.737a.928.928 0 0 1-.026-.009l-.218-.078a.333.333 0 0 0-.24.621Z", fill: "currentColor" })));
|
|
22
|
+
});
|
|
23
|
+
export default SvgFileParagraphFill;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgFilePlus: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & SVGRProps & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default SvgFilePlus;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
import * as React from "react";
|
|
13
|
+
import { forwardRef } from "react";
|
|
14
|
+
import { useId } from "./util/useId";
|
|
15
|
+
const SvgFilePlus = forwardRef((_a, ref) => {
|
|
16
|
+
var { title, titleId: _titleId } = _a, props = __rest(_a, ["title", "titleId"]);
|
|
17
|
+
let titleId = useId();
|
|
18
|
+
titleId = title ? (_titleId ? _titleId : "title-" + titleId) : undefined;
|
|
19
|
+
return (React.createElement("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", focusable: false, role: "img", ref: ref, "aria-labelledby": titleId }, props),
|
|
20
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
21
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.75 19.25V4.75h6.5V7.5c0 .69.56 1.25 1.25 1.25h2.75v10.5H6.75Zm9.44-12-1.44-1.44v1.44h1.44Zm-9.69-4c-.69 0-1.25.56-1.25 1.25v15c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25V8a.75.75 0 0 0-.22-.53l-4-4a.75.75 0 0 0-.53-.22H6.5ZM9.129 14a.75.75 0 0 1 .75-.75h1.371v-1.371a.75.75 0 0 1 1.5 0v1.371h1.371a.75.75 0 0 1 0 1.5H12.75v1.371a.75.75 0 0 1-1.5 0V14.75H9.879a.75.75 0 0 1-.75-.75Z", fill: "currentColor" })));
|
|
22
|
+
});
|
|
23
|
+
export default SvgFilePlus;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgFilePlusFill: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & SVGRProps & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default SvgFilePlusFill;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
import * as React from "react";
|
|
13
|
+
import { forwardRef } from "react";
|
|
14
|
+
import { useId } from "./util/useId";
|
|
15
|
+
const SvgFilePlusFill = forwardRef((_a, ref) => {
|
|
16
|
+
var { title, titleId: _titleId } = _a, props = __rest(_a, ["title", "titleId"]);
|
|
17
|
+
let titleId = useId();
|
|
18
|
+
titleId = title ? (_titleId ? _titleId : "title-" + titleId) : undefined;
|
|
19
|
+
return (React.createElement("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", focusable: false, role: "img", ref: ref, "aria-labelledby": titleId }, props),
|
|
20
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
21
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.25 7.5v-4a.25.25 0 0 0-.25-.25H6.5c-.69 0-1.25.56-1.25 1.25v15c0 .69.56 1.25 1.25 1.25h11c.69 0 1.25-.56 1.25-1.25V9a.25.25 0 0 0-.25-.25h-4c-.69 0-1.25-.56-1.25-1.25ZM15 7.25a.25.25 0 0 1-.25-.25V4.293a.25.25 0 0 1 .427-.177l2.707 2.707a.25.25 0 0 1-.177.427H15Zm-3 3.879a.75.75 0 0 1 .75.75V13c0 .138.112.25.25.25h1.121a.75.75 0 0 1 0 1.5h-1.12a.25.25 0 0 0-.25.25v1.121a.75.75 0 0 1-1.5 0V15a.25.25 0 0 0-.25-.25H9.878a.75.75 0 0 1 0-1.5H11a.25.25 0 0 0 .25-.25v-1.121a.75.75 0 0 1 .75-.75Z", fill: "currentColor" })));
|
|
22
|
+
});
|
|
23
|
+
export default SvgFilePlusFill;
|
|
@@ -18,6 +18,6 @@ const SvgInformationSquare = forwardRef((_a, ref) => {
|
|
|
18
18
|
titleId = title ? (_titleId ? _titleId : "title-" + titleId) : undefined;
|
|
19
19
|
return (React.createElement("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", focusable: false, role: "img", ref: ref, "aria-labelledby": titleId }, props),
|
|
20
20
|
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
21
|
-
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4 3.25a.75.75 0 0 0-.75.75v16c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75V4a.75.75 0 0 0-.75-.75H4Zm.75 16V4.75h14.5v14.5H4.75ZM12
|
|
21
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4 3.25a.75.75 0 0 0-.75.75v16c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75V4a.75.75 0 0 0-.75-.75H4Zm.75 16V4.75h14.5v14.5H4.75ZM12 6.75a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM10.5 10a.75.75 0 0 0 0 1.5h.75v4h-.75a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.75v-4.75A.75.75 0 0 0 12 10h-1.5Z", fill: "currentColor" })));
|
|
22
22
|
});
|
|
23
23
|
export default SvgInformationSquare;
|
|
@@ -18,6 +18,6 @@ const SvgInformationSquareFill = forwardRef((_a, ref) => {
|
|
|
18
18
|
titleId = title ? (_titleId ? _titleId : "title-" + titleId) : undefined;
|
|
19
19
|
return (React.createElement("svg", Object.assign({ width: "1em", height: "1em", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", focusable: false, role: "img", ref: ref, "aria-labelledby": titleId }, props),
|
|
20
20
|
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
21
|
-
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.25 4A.75.75 0 0 1 4 3.25h16a.75.75 0 0 1 .75.75v16a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75V4ZM11
|
|
21
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.25 4A.75.75 0 0 1 4 3.25h16a.75.75 0 0 1 .75.75v16a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75V4ZM11 7.75a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-1.25 3a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 .75.75v4.75h.75a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h.75v-4h-.75a.75.75 0 0 1-.75-.75Z", fill: "currentColor" })));
|
|
22
22
|
});
|
|
23
23
|
export default SvgInformationSquareFill;
|
|
@@ -315,8 +315,12 @@ export { default as FileJsonIcon } from "./FileJson";
|
|
|
315
315
|
export { default as FileJsonFillIcon } from "./FileJsonFill";
|
|
316
316
|
export { default as FileLoadingIcon } from "./FileLoading";
|
|
317
317
|
export { default as FileLoadingFillIcon } from "./FileLoadingFill";
|
|
318
|
+
export { default as FileParagraphIcon } from "./FileParagraph";
|
|
319
|
+
export { default as FileParagraphFillIcon } from "./FileParagraphFill";
|
|
318
320
|
export { default as FilePdfIcon } from "./FilePdf";
|
|
319
321
|
export { default as FilePdfFillIcon } from "./FilePdfFill";
|
|
322
|
+
export { default as FilePlusIcon } from "./FilePlus";
|
|
323
|
+
export { default as FilePlusFillIcon } from "./FilePlusFill";
|
|
320
324
|
export { default as FileResetIcon } from "./FileReset";
|
|
321
325
|
export { default as FileResetFillIcon } from "./FileResetFill";
|
|
322
326
|
export { default as FileSearchIcon } from "./FileSearch";
|
package/dist/react/esm/index.js
CHANGED
|
@@ -315,8 +315,12 @@ export { default as FileJsonIcon } from "./FileJson";
|
|
|
315
315
|
export { default as FileJsonFillIcon } from "./FileJsonFill";
|
|
316
316
|
export { default as FileLoadingIcon } from "./FileLoading";
|
|
317
317
|
export { default as FileLoadingFillIcon } from "./FileLoadingFill";
|
|
318
|
+
export { default as FileParagraphIcon } from "./FileParagraph";
|
|
319
|
+
export { default as FileParagraphFillIcon } from "./FileParagraphFill";
|
|
318
320
|
export { default as FilePdfIcon } from "./FilePdf";
|
|
319
321
|
export { default as FilePdfFillIcon } from "./FilePdfFill";
|
|
322
|
+
export { default as FilePlusIcon } from "./FilePlus";
|
|
323
|
+
export { default as FilePlusFillIcon } from "./FilePlusFill";
|
|
320
324
|
export { default as FileResetIcon } from "./FileReset";
|
|
321
325
|
export { default as FileResetFillIcon } from "./FileResetFill";
|
|
322
326
|
export { default as FileSearchIcon } from "./FileSearch";
|