@navikt/aksel-icons 2.9.2 → 2.9.4
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/ArrowsUpDown.js +1 -1
- package/dist/react/cjs/{ListFill.js → BulletList.js} +3 -3
- package/dist/react/cjs/{List.js → NumberList.js} +3 -3
- package/dist/react/cjs/index.js +14 -14
- package/dist/react/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/react/esm/ArrowsUpDown.js +1 -1
- package/dist/react/esm/BulletList.d.ts +7 -0
- package/dist/react/esm/{ListFill.js → BulletList.js} +3 -3
- package/dist/react/esm/NumberList.d.ts +7 -0
- package/dist/react/esm/{List.js → NumberList.js} +3 -3
- package/dist/react/esm/index.d.ts +2 -2
- package/dist/react/esm/index.js +2 -2
- package/dist/react/esm/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/svg/ArrowsUpDown.svg +1 -1
- package/dist/svg/BulletList.svg +3 -0
- package/dist/svg/NumberList.svg +3 -0
- package/package.json +1 -1
- package/dist/react/esm/List.d.ts +0 -7
- package/dist/react/esm/ListFill.d.ts +0 -7
- package/dist/svg/List.svg +0 -3
- package/dist/svg/ListFill.svg +0 -3
|
@@ -18,6 +18,6 @@ const SvgArrowsUpDown = 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: "M17.
|
|
21
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.53 21.03a.75.75 0 0 1-1.06 0l-3.5-3.5a.75.75 0 1 1 1.06-1.06l2.22 2.22V9.5a.75.75 0 0 1 1.5 0v9.19l2.22-2.22a.75.75 0 1 1 1.06 1.06l-3.5 3.5Zm-6.5-14.56-3.5-3.5a.75.75 0 0 0-1.06 0l-3.5 3.5a.75.75 0 0 0 1.06 1.06l2.22-2.22v9.19a.75.75 0 0 0 1.5 0V5.31l2.22 2.22a.75.75 0 1 0 1.06-1.06Z", fill: "currentColor" })));
|
|
22
22
|
});
|
|
23
23
|
export default SvgArrowsUpDown;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgBulletList: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & SVGRProps & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default SvgBulletList;
|
|
@@ -12,12 +12,12 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
12
12
|
import * as React from "react";
|
|
13
13
|
import { forwardRef } from "react";
|
|
14
14
|
import { useId } from "./util/useId";
|
|
15
|
-
const
|
|
15
|
+
const SvgBulletList = forwardRef((_a, ref) => {
|
|
16
16
|
var { title, titleId: _titleId } = _a, props = __rest(_a, ["title", "titleId"]);
|
|
17
17
|
let titleId = useId();
|
|
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: "
|
|
21
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4 5.75a.25.25 0 1 0 0 .5.25.25 0 0 0 0-.5ZM2.25 6a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0Zm1.5 6a.25.25 0 1 1 .5 0 .25.25 0 0 1-.5 0ZM4 10.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM3.75 18a.25.25 0 1 1 .5 0 .25.25 0 0 1-.5 0ZM4 16.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Zm5 1a.75.75 0 0 0 0 1.5h12a.75.75 0 0 0 0-1.5H9ZM8.25 12a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75ZM9 5.25a.75.75 0 0 0 0 1.5h12a.75.75 0 0 0 0-1.5H9Z", fill: "currentColor" })));
|
|
22
22
|
});
|
|
23
|
-
export default
|
|
23
|
+
export default SvgBulletList;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgNumberList: React.ForwardRefExoticComponent<React.SVGProps<SVGSVGElement> & SVGRProps & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default SvgNumberList;
|
|
@@ -12,12 +12,12 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
12
12
|
import * as React from "react";
|
|
13
13
|
import { forwardRef } from "react";
|
|
14
14
|
import { useId } from "./util/useId";
|
|
15
|
-
const
|
|
15
|
+
const SvgNumberList = forwardRef((_a, ref) => {
|
|
16
16
|
var { title, titleId: _titleId } = _a, props = __rest(_a, ["title", "titleId"]);
|
|
17
17
|
let titleId = useId();
|
|
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: "
|
|
21
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.25 5a.75.75 0 0 0-1.166-.624l-1.5 1a.75.75 0 1 0 .832 1.248l.334-.223V9.75H3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.75V5Zm-.75 9.25a.75.75 0 0 0-.75.75.75.75 0 0 1-1.5 0 2.25 2.25 0 0 1 2.25-2.25h.04a2.21 2.21 0 0 1 1.678 3.648L4.631 18.25H6a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.57-1.238l2.65-3.09a.71.71 0 0 0-.54-1.172H4.5Zm4.5 3a.75.75 0 0 0 0 1.5h12a.75.75 0 0 0 0-1.5H9ZM8.25 12a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75ZM9 5.25a.75.75 0 0 0 0 1.5h12a.75.75 0 0 0 0-1.5H9Z", fill: "currentColor" })));
|
|
22
22
|
});
|
|
23
|
-
export default
|
|
23
|
+
export default SvgNumberList;
|
|
@@ -94,6 +94,7 @@ export { default as Buldings2Icon } from "./Buldings2";
|
|
|
94
94
|
export { default as Buldings2FillIcon } from "./Buldings2Fill";
|
|
95
95
|
export { default as Buldings3Icon } from "./Buldings3";
|
|
96
96
|
export { default as Buldings3FillIcon } from "./Buldings3Fill";
|
|
97
|
+
export { default as BulletListIcon } from "./BulletList";
|
|
97
98
|
export { default as BusIcon } from "./Bus";
|
|
98
99
|
export { default as BusFillIcon } from "./BusFill";
|
|
99
100
|
export { default as CalculatorIcon } from "./Calculator";
|
|
@@ -467,8 +468,6 @@ export { default as LineGraphDotIcon } from "./LineGraphDot";
|
|
|
467
468
|
export { default as LineGraphStackedIcon } from "./LineGraphStacked";
|
|
468
469
|
export { default as LinkIcon } from "./Link";
|
|
469
470
|
export { default as LinkBrokenIcon } from "./LinkBroken";
|
|
470
|
-
export { default as ListIcon } from "./List";
|
|
471
|
-
export { default as ListFillIcon } from "./ListFill";
|
|
472
471
|
export { default as MagnifyingGlassIcon } from "./MagnifyingGlass";
|
|
473
472
|
export { default as MagnifyingGlassFillIcon } from "./MagnifyingGlassFill";
|
|
474
473
|
export { default as MeasuringTapeIcon } from "./MeasuringTape";
|
|
@@ -529,6 +528,7 @@ export { default as NewspaperFillIcon } from "./NewspaperFill";
|
|
|
529
528
|
export { default as NoSmokingIcon } from "./NoSmoking";
|
|
530
529
|
export { default as NoSmokingFillIcon } from "./NoSmokingFill";
|
|
531
530
|
export { default as NokIcon } from "./Nok";
|
|
531
|
+
export { default as NumberListIcon } from "./NumberList";
|
|
532
532
|
export { default as Over18Icon } from "./Over18";
|
|
533
533
|
export { default as Over18FillIcon } from "./Over18Fill";
|
|
534
534
|
export { default as PackageIcon } from "./Package";
|
package/dist/react/esm/index.js
CHANGED
|
@@ -94,6 +94,7 @@ export { default as Buldings2Icon } from "./Buldings2";
|
|
|
94
94
|
export { default as Buldings2FillIcon } from "./Buldings2Fill";
|
|
95
95
|
export { default as Buldings3Icon } from "./Buldings3";
|
|
96
96
|
export { default as Buldings3FillIcon } from "./Buldings3Fill";
|
|
97
|
+
export { default as BulletListIcon } from "./BulletList";
|
|
97
98
|
export { default as BusIcon } from "./Bus";
|
|
98
99
|
export { default as BusFillIcon } from "./BusFill";
|
|
99
100
|
export { default as CalculatorIcon } from "./Calculator";
|
|
@@ -467,8 +468,6 @@ export { default as LineGraphDotIcon } from "./LineGraphDot";
|
|
|
467
468
|
export { default as LineGraphStackedIcon } from "./LineGraphStacked";
|
|
468
469
|
export { default as LinkIcon } from "./Link";
|
|
469
470
|
export { default as LinkBrokenIcon } from "./LinkBroken";
|
|
470
|
-
export { default as ListIcon } from "./List";
|
|
471
|
-
export { default as ListFillIcon } from "./ListFill";
|
|
472
471
|
export { default as MagnifyingGlassIcon } from "./MagnifyingGlass";
|
|
473
472
|
export { default as MagnifyingGlassFillIcon } from "./MagnifyingGlassFill";
|
|
474
473
|
export { default as MeasuringTapeIcon } from "./MeasuringTape";
|
|
@@ -529,6 +528,7 @@ export { default as NewspaperFillIcon } from "./NewspaperFill";
|
|
|
529
528
|
export { default as NoSmokingIcon } from "./NoSmoking";
|
|
530
529
|
export { default as NoSmokingFillIcon } from "./NoSmokingFill";
|
|
531
530
|
export { default as NokIcon } from "./Nok";
|
|
531
|
+
export { default as NumberListIcon } from "./NumberList";
|
|
532
532
|
export { default as Over18Icon } from "./Over18";
|
|
533
533
|
export { default as Over18FillIcon } from "./Over18Fill";
|
|
534
534
|
export { default as PackageIcon } from "./Package";
|