@imtf/icons 1.3.4 → 1.3.5
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/lib/icons/ContainsIcon.d.ts +4 -0
- package/lib/icons/ContainsIcon.js +32 -0
- package/lib/icons/ContainsIcon.mjs +32 -0
- package/lib/icons/EqualIcon.d.ts +4 -0
- package/lib/icons/EqualIcon.js +32 -0
- package/lib/icons/EqualIcon.mjs +32 -0
- package/lib/icons/FilterAltIcon.d.ts +4 -0
- package/lib/icons/FilterAltIcon.js +42 -0
- package/lib/icons/FilterAltIcon.mjs +42 -0
- package/lib/icons/StartsWithIcon.d.ts +4 -0
- package/lib/icons/StartsWithIcon.js +32 -0
- package/lib/icons/StartsWithIcon.mjs +32 -0
- package/lib/icons/index.d.ts +4 -0
- package/lib/index.js +8 -0
- package/lib/index.mjs +149 -145
- package/package.json +1 -1
- package/svg/Contains.json +4 -0
- package/svg/Contains.svg +3 -0
- package/svg/Equal.json +4 -0
- package/svg/Equal.svg +4 -0
- package/svg/FilterAlt.json +4 -0
- package/svg/FilterAlt.svg +1 -0
- package/svg/StartsWith.json +4 -0
- package/svg/StartsWith.svg +3 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export { ForwardRef as ContainsIcon };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_get = require("../utils/get.js");
|
|
3
|
+
const require_Context = require("../providers/IconProvider/Context.js");
|
|
4
|
+
let react = require("react");
|
|
5
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
6
|
+
//#region src/icons/ContainsIcon.tsx
|
|
7
|
+
var ContainsIcon = ({ color: defaultColor, size, ...props }, ref) => {
|
|
8
|
+
const defaultContextValues = (0, react.useContext)(require_Context.IconContext);
|
|
9
|
+
const defaultValues = {
|
|
10
|
+
...defaultContextValues,
|
|
11
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
12
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
13
|
+
...props
|
|
14
|
+
};
|
|
15
|
+
const color = (0, react.useMemo)(() => require_get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
16
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
width: "1em",
|
|
19
|
+
height: "1em",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fontSize: defaultValues.fontSize,
|
|
22
|
+
fill: color,
|
|
23
|
+
color,
|
|
24
|
+
"data-testid": "ContainsIcon",
|
|
25
|
+
ref,
|
|
26
|
+
...props,
|
|
27
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 3a2 2 0 0 1 2 2v14c0 1.1-.9 2-2 2H4.99C3.88 21 3 20.1 3 19l.01-14c0-1.11.87-2 1.98-2zM4.99 5 5 19h14V5zm7.29 10h-.949l-.665-1.826H7.747L7.083 15h-.944l2.66-6.98h.811zm5.602-6.309-3.834 5.556h3.987V15h-5.077v-.69l3.825-5.533H13.02V8.02h4.862zm-9.86 3.725h2.369L9.205 9.159z" })
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
var ForwardRef = (0, react.forwardRef)(ContainsIcon);
|
|
31
|
+
//#endregion
|
|
32
|
+
exports.ForwardRef = ForwardRef;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import get from "../utils/get.mjs";
|
|
3
|
+
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
4
|
+
import { forwardRef, useContext, useMemo } from "react";
|
|
5
|
+
import { jsx } from "react/jsx-runtime";
|
|
6
|
+
//#region src/icons/ContainsIcon.tsx
|
|
7
|
+
var ContainsIcon = ({ color: defaultColor, size, ...props }, ref) => {
|
|
8
|
+
const defaultContextValues = useContext(IconContext);
|
|
9
|
+
const defaultValues = {
|
|
10
|
+
...defaultContextValues,
|
|
11
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
12
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
13
|
+
...props
|
|
14
|
+
};
|
|
15
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
16
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
width: "1em",
|
|
19
|
+
height: "1em",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fontSize: defaultValues.fontSize,
|
|
22
|
+
fill: color,
|
|
23
|
+
color,
|
|
24
|
+
"data-testid": "ContainsIcon",
|
|
25
|
+
ref,
|
|
26
|
+
...props,
|
|
27
|
+
children: /* @__PURE__ */ jsx("path", { d: "M19 3a2 2 0 0 1 2 2v14c0 1.1-.9 2-2 2H4.99C3.88 21 3 20.1 3 19l.01-14c0-1.11.87-2 1.98-2zM4.99 5 5 19h14V5zm7.29 10h-.949l-.665-1.826H7.747L7.083 15h-.944l2.66-6.98h.811zm5.602-6.309-3.834 5.556h3.987V15h-5.077v-.69l3.825-5.533H13.02V8.02h4.862zm-9.86 3.725h2.369L9.205 9.159z" })
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
var ForwardRef = forwardRef(ContainsIcon);
|
|
31
|
+
//#endregion
|
|
32
|
+
export { ForwardRef };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export { ForwardRef as EqualIcon };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_get = require("../utils/get.js");
|
|
3
|
+
const require_Context = require("../providers/IconProvider/Context.js");
|
|
4
|
+
let react = require("react");
|
|
5
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
6
|
+
//#region src/icons/EqualIcon.tsx
|
|
7
|
+
var EqualIcon = ({ color: defaultColor, size, ...props }, ref) => {
|
|
8
|
+
const defaultContextValues = (0, react.useContext)(require_Context.IconContext);
|
|
9
|
+
const defaultValues = {
|
|
10
|
+
...defaultContextValues,
|
|
11
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
12
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
13
|
+
...props
|
|
14
|
+
};
|
|
15
|
+
const color = (0, react.useMemo)(() => require_get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
16
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
width: "1em",
|
|
19
|
+
height: "1em",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fontSize: defaultValues.fontSize,
|
|
22
|
+
fill: color,
|
|
23
|
+
color,
|
|
24
|
+
"data-testid": "EqualIcon",
|
|
25
|
+
ref,
|
|
26
|
+
...props,
|
|
27
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 14h12v2H6zM6 8h12v2H6z" })
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
var ForwardRef = (0, react.forwardRef)(EqualIcon);
|
|
31
|
+
//#endregion
|
|
32
|
+
exports.ForwardRef = ForwardRef;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import get from "../utils/get.mjs";
|
|
3
|
+
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
4
|
+
import { forwardRef, useContext, useMemo } from "react";
|
|
5
|
+
import { jsx } from "react/jsx-runtime";
|
|
6
|
+
//#region src/icons/EqualIcon.tsx
|
|
7
|
+
var EqualIcon = ({ color: defaultColor, size, ...props }, ref) => {
|
|
8
|
+
const defaultContextValues = useContext(IconContext);
|
|
9
|
+
const defaultValues = {
|
|
10
|
+
...defaultContextValues,
|
|
11
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
12
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
13
|
+
...props
|
|
14
|
+
};
|
|
15
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
16
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
width: "1em",
|
|
19
|
+
height: "1em",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fontSize: defaultValues.fontSize,
|
|
22
|
+
fill: color,
|
|
23
|
+
color,
|
|
24
|
+
"data-testid": "EqualIcon",
|
|
25
|
+
ref,
|
|
26
|
+
...props,
|
|
27
|
+
children: /* @__PURE__ */ jsx("path", { d: "M6 14h12v2H6zM6 8h12v2H6z" })
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
var ForwardRef = forwardRef(EqualIcon);
|
|
31
|
+
//#endregion
|
|
32
|
+
export { ForwardRef };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export { ForwardRef as FilterAltIcon };
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_get = require("../utils/get.js");
|
|
3
|
+
const require_Context = require("../providers/IconProvider/Context.js");
|
|
4
|
+
let react = require("react");
|
|
5
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
6
|
+
//#region src/icons/FilterAltIcon.tsx
|
|
7
|
+
var FilterAltIcon = ({ color: defaultColor, size, ...props }, ref) => {
|
|
8
|
+
const defaultContextValues = (0, react.useContext)(require_Context.IconContext);
|
|
9
|
+
const defaultValues = {
|
|
10
|
+
...defaultContextValues,
|
|
11
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
12
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
13
|
+
...props
|
|
14
|
+
};
|
|
15
|
+
const color = (0, react.useMemo)(() => require_get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
16
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("svg", {
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
width: "1em",
|
|
19
|
+
height: "1em",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fontSize: defaultValues.fontSize,
|
|
22
|
+
fill: color,
|
|
23
|
+
color,
|
|
24
|
+
"data-testid": "FilterAltIcon",
|
|
25
|
+
ref,
|
|
26
|
+
...props,
|
|
27
|
+
children: [
|
|
28
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
29
|
+
fill: "none",
|
|
30
|
+
d: "M0 0h24m0 24H0"
|
|
31
|
+
}),
|
|
32
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4.25 5.61C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39A.998.998 0 0 0 18.95 4H5.04c-.83 0-1.3.95-.79 1.61" }),
|
|
33
|
+
/* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
|
|
34
|
+
fill: "none",
|
|
35
|
+
d: "M0 0h24v24H0z"
|
|
36
|
+
})
|
|
37
|
+
]
|
|
38
|
+
});
|
|
39
|
+
};
|
|
40
|
+
var ForwardRef = (0, react.forwardRef)(FilterAltIcon);
|
|
41
|
+
//#endregion
|
|
42
|
+
exports.ForwardRef = ForwardRef;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import get from "../utils/get.mjs";
|
|
3
|
+
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
4
|
+
import { forwardRef, useContext, useMemo } from "react";
|
|
5
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
6
|
+
//#region src/icons/FilterAltIcon.tsx
|
|
7
|
+
var FilterAltIcon = ({ color: defaultColor, size, ...props }, ref) => {
|
|
8
|
+
const defaultContextValues = useContext(IconContext);
|
|
9
|
+
const defaultValues = {
|
|
10
|
+
...defaultContextValues,
|
|
11
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
12
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
13
|
+
...props
|
|
14
|
+
};
|
|
15
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
16
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
width: "1em",
|
|
19
|
+
height: "1em",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fontSize: defaultValues.fontSize,
|
|
22
|
+
fill: color,
|
|
23
|
+
color,
|
|
24
|
+
"data-testid": "FilterAltIcon",
|
|
25
|
+
ref,
|
|
26
|
+
...props,
|
|
27
|
+
children: [
|
|
28
|
+
/* @__PURE__ */ jsx("path", {
|
|
29
|
+
fill: "none",
|
|
30
|
+
d: "M0 0h24m0 24H0"
|
|
31
|
+
}),
|
|
32
|
+
/* @__PURE__ */ jsx("path", { d: "M4.25 5.61C6.27 8.2 10 13 10 13v6c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-6s3.72-4.8 5.74-7.39A.998.998 0 0 0 18.95 4H5.04c-.83 0-1.3.95-.79 1.61" }),
|
|
33
|
+
/* @__PURE__ */ jsx("path", {
|
|
34
|
+
fill: "none",
|
|
35
|
+
d: "M0 0h24v24H0z"
|
|
36
|
+
})
|
|
37
|
+
]
|
|
38
|
+
});
|
|
39
|
+
};
|
|
40
|
+
var ForwardRef = forwardRef(FilterAltIcon);
|
|
41
|
+
//#endregion
|
|
42
|
+
export { ForwardRef };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export { ForwardRef as StartsWithIcon };
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_get = require("../utils/get.js");
|
|
3
|
+
const require_Context = require("../providers/IconProvider/Context.js");
|
|
4
|
+
let react = require("react");
|
|
5
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
6
|
+
//#region src/icons/StartsWithIcon.tsx
|
|
7
|
+
var StartsWithIcon = ({ color: defaultColor, size, ...props }, ref) => {
|
|
8
|
+
const defaultContextValues = (0, react.useContext)(require_Context.IconContext);
|
|
9
|
+
const defaultValues = {
|
|
10
|
+
...defaultContextValues,
|
|
11
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
12
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
13
|
+
...props
|
|
14
|
+
};
|
|
15
|
+
const color = (0, react.useMemo)(() => require_get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
16
|
+
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
width: "1em",
|
|
19
|
+
height: "1em",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fontSize: defaultValues.fontSize,
|
|
22
|
+
fill: color,
|
|
23
|
+
color,
|
|
24
|
+
"data-testid": "StartsWithIcon",
|
|
25
|
+
ref,
|
|
26
|
+
...props,
|
|
27
|
+
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 3a2 2 0 0 1 2 2H4.99L5 19h12c0 1.1-.9 2-2 2H4.99C3.88 21 3 20.1 3 19l.01-14c0-1.11.87-2 1.98-2zm-2.72 12h-.949l-.665-1.826H7.747L7.083 15h-.944l2.66-6.98h.811zm5.602-6.309-3.834 5.556h3.987V15h-5.077v-.69l3.825-5.533H13.02V8.02h4.862zm-9.86 3.725h2.369L9.205 9.159z" })
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
var ForwardRef = (0, react.forwardRef)(StartsWithIcon);
|
|
31
|
+
//#endregion
|
|
32
|
+
exports.ForwardRef = ForwardRef;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import get from "../utils/get.mjs";
|
|
3
|
+
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
4
|
+
import { forwardRef, useContext, useMemo } from "react";
|
|
5
|
+
import { jsx } from "react/jsx-runtime";
|
|
6
|
+
//#region src/icons/StartsWithIcon.tsx
|
|
7
|
+
var StartsWithIcon = ({ color: defaultColor, size, ...props }, ref) => {
|
|
8
|
+
const defaultContextValues = useContext(IconContext);
|
|
9
|
+
const defaultValues = {
|
|
10
|
+
...defaultContextValues,
|
|
11
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
12
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
13
|
+
...props
|
|
14
|
+
};
|
|
15
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
16
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
width: "1em",
|
|
19
|
+
height: "1em",
|
|
20
|
+
viewBox: "0 0 24 24",
|
|
21
|
+
fontSize: defaultValues.fontSize,
|
|
22
|
+
fill: color,
|
|
23
|
+
color,
|
|
24
|
+
"data-testid": "StartsWithIcon",
|
|
25
|
+
ref,
|
|
26
|
+
...props,
|
|
27
|
+
children: /* @__PURE__ */ jsx("path", { d: "M15 3a2 2 0 0 1 2 2H4.99L5 19h12c0 1.1-.9 2-2 2H4.99C3.88 21 3 20.1 3 19l.01-14c0-1.11.87-2 1.98-2zm-2.72 12h-.949l-.665-1.826H7.747L7.083 15h-.944l2.66-6.98h.811zm5.602-6.309-3.834 5.556h3.987V15h-5.077v-.69l3.825-5.533H13.02V8.02h4.862zm-9.86 3.725h2.369L9.205 9.159z" })
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
var ForwardRef = forwardRef(StartsWithIcon);
|
|
31
|
+
//#endregion
|
|
32
|
+
export { ForwardRef };
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export { ChevronLeftIcon } from "./ChevronLeftIcon";
|
|
|
47
47
|
export { ChevronRightIcon } from "./ChevronRightIcon";
|
|
48
48
|
export { ChevronUpIcon } from "./ChevronUpIcon";
|
|
49
49
|
export { CommentIcon } from "./CommentIcon";
|
|
50
|
+
export { ContainsIcon } from "./ContainsIcon";
|
|
50
51
|
export { CustomFormIcon } from "./CustomFormIcon";
|
|
51
52
|
export { DateCreationIcon } from "./DateCreationIcon";
|
|
52
53
|
export { DateDueIcon } from "./DateDueIcon";
|
|
@@ -88,6 +89,7 @@ export { EntityLegalPersonIcon } from "./EntityLegalPersonIcon";
|
|
|
88
89
|
export { EntityPhysicalPersonIcon } from "./EntityPhysicalPersonIcon";
|
|
89
90
|
export { EntityScenarioIcon } from "./EntityScenarioIcon";
|
|
90
91
|
export { EntityIcon } from "./EntityIcon";
|
|
92
|
+
export { EqualIcon } from "./EqualIcon";
|
|
91
93
|
export { ErrorIcon } from "./ErrorIcon";
|
|
92
94
|
export { ExpandTreeLessIcon } from "./ExpandTreeLessIcon";
|
|
93
95
|
export { ExpandTreeMoreIcon } from "./ExpandTreeMoreIcon";
|
|
@@ -104,6 +106,7 @@ export { FileStackIcon } from "./FileStackIcon";
|
|
|
104
106
|
export { FileWordLinkIcon } from "./FileWordLinkIcon";
|
|
105
107
|
export { FileWordIcon } from "./FileWordIcon";
|
|
106
108
|
export { FileIcon } from "./FileIcon";
|
|
109
|
+
export { FilterAltIcon } from "./FilterAltIcon";
|
|
107
110
|
export { FolderInboxIcon } from "./FolderInboxIcon";
|
|
108
111
|
export { FolderIcon } from "./FolderIcon";
|
|
109
112
|
export { HistoryIcon } from "./HistoryIcon";
|
|
@@ -147,6 +150,7 @@ export { ScoreIcon } from "./ScoreIcon";
|
|
|
147
150
|
export { SironOneIcon } from "./SironOneIcon";
|
|
148
151
|
export { SkipNextIcon } from "./SkipNextIcon";
|
|
149
152
|
export { SkipPreviousIcon } from "./SkipPreviousIcon";
|
|
153
|
+
export { StartsWithIcon } from "./StartsWithIcon";
|
|
150
154
|
export { StatusApprovalPendingIcon } from "./StatusApprovalPendingIcon";
|
|
151
155
|
export { StatusApprovalTriggeredIcon } from "./StatusApprovalTriggeredIcon";
|
|
152
156
|
export { StatusApprovedIcon } from "./StatusApprovedIcon";
|
package/lib/index.js
CHANGED
|
@@ -51,6 +51,7 @@ const require_ChevronLeftIcon = require("./icons/ChevronLeftIcon.js");
|
|
|
51
51
|
const require_ChevronRightIcon = require("./icons/ChevronRightIcon.js");
|
|
52
52
|
const require_ChevronUpIcon = require("./icons/ChevronUpIcon.js");
|
|
53
53
|
const require_CommentIcon = require("./icons/CommentIcon.js");
|
|
54
|
+
const require_ContainsIcon = require("./icons/ContainsIcon.js");
|
|
54
55
|
const require_CustomFormIcon = require("./icons/CustomFormIcon.js");
|
|
55
56
|
const require_DateCreationIcon = require("./icons/DateCreationIcon.js");
|
|
56
57
|
const require_DateDueIcon = require("./icons/DateDueIcon.js");
|
|
@@ -92,6 +93,7 @@ const require_EntityLegalPersonIcon = require("./icons/EntityLegalPersonIcon.js"
|
|
|
92
93
|
const require_EntityPhysicalPersonIcon = require("./icons/EntityPhysicalPersonIcon.js");
|
|
93
94
|
const require_EntityScenarioIcon = require("./icons/EntityScenarioIcon.js");
|
|
94
95
|
const require_EntityIcon = require("./icons/EntityIcon.js");
|
|
96
|
+
const require_EqualIcon = require("./icons/EqualIcon.js");
|
|
95
97
|
const require_ErrorIcon = require("./icons/ErrorIcon.js");
|
|
96
98
|
const require_ExpandTreeLessIcon = require("./icons/ExpandTreeLessIcon.js");
|
|
97
99
|
const require_ExpandTreeMoreIcon = require("./icons/ExpandTreeMoreIcon.js");
|
|
@@ -108,6 +110,7 @@ const require_FileStackIcon = require("./icons/FileStackIcon.js");
|
|
|
108
110
|
const require_FileWordLinkIcon = require("./icons/FileWordLinkIcon.js");
|
|
109
111
|
const require_FileWordIcon = require("./icons/FileWordIcon.js");
|
|
110
112
|
const require_FileIcon = require("./icons/FileIcon.js");
|
|
113
|
+
const require_FilterAltIcon = require("./icons/FilterAltIcon.js");
|
|
111
114
|
const require_FolderInboxIcon = require("./icons/FolderInboxIcon.js");
|
|
112
115
|
const require_FolderIcon = require("./icons/FolderIcon.js");
|
|
113
116
|
const require_HistoryIcon = require("./icons/HistoryIcon.js");
|
|
@@ -151,6 +154,7 @@ const require_ScoreIcon = require("./icons/ScoreIcon.js");
|
|
|
151
154
|
const require_SironOneIcon = require("./icons/SironOneIcon.js");
|
|
152
155
|
const require_SkipNextIcon = require("./icons/SkipNextIcon.js");
|
|
153
156
|
const require_SkipPreviousIcon = require("./icons/SkipPreviousIcon.js");
|
|
157
|
+
const require_StartsWithIcon = require("./icons/StartsWithIcon.js");
|
|
154
158
|
const require_StatusApprovalPendingIcon = require("./icons/StatusApprovalPendingIcon.js");
|
|
155
159
|
const require_StatusApprovalTriggeredIcon = require("./icons/StatusApprovalTriggeredIcon.js");
|
|
156
160
|
const require_StatusApprovedIcon = require("./icons/StatusApprovedIcon.js");
|
|
@@ -244,6 +248,7 @@ exports.ChevronLeftIcon = require_ChevronLeftIcon.ForwardRef;
|
|
|
244
248
|
exports.ChevronRightIcon = require_ChevronRightIcon.ForwardRef;
|
|
245
249
|
exports.ChevronUpIcon = require_ChevronUpIcon.ForwardRef;
|
|
246
250
|
exports.CommentIcon = require_CommentIcon.ForwardRef;
|
|
251
|
+
exports.ContainsIcon = require_ContainsIcon.ForwardRef;
|
|
247
252
|
exports.CustomFormIcon = require_CustomFormIcon.ForwardRef;
|
|
248
253
|
exports.DateCreationIcon = require_DateCreationIcon.ForwardRef;
|
|
249
254
|
exports.DateDueIcon = require_DateDueIcon.ForwardRef;
|
|
@@ -285,6 +290,7 @@ exports.EntityIcon = require_EntityIcon.ForwardRef;
|
|
|
285
290
|
exports.EntityLegalPersonIcon = require_EntityLegalPersonIcon.ForwardRef;
|
|
286
291
|
exports.EntityPhysicalPersonIcon = require_EntityPhysicalPersonIcon.ForwardRef;
|
|
287
292
|
exports.EntityScenarioIcon = require_EntityScenarioIcon.ForwardRef;
|
|
293
|
+
exports.EqualIcon = require_EqualIcon.ForwardRef;
|
|
288
294
|
exports.ErrorIcon = require_ErrorIcon.ForwardRef;
|
|
289
295
|
exports.ExpandTreeLessIcon = require_ExpandTreeLessIcon.ForwardRef;
|
|
290
296
|
exports.ExpandTreeMoreIcon = require_ExpandTreeMoreIcon.ForwardRef;
|
|
@@ -301,6 +307,7 @@ exports.FilePowerpointLinkIcon = require_FilePowerpointLinkIcon.ForwardRef;
|
|
|
301
307
|
exports.FileStackIcon = require_FileStackIcon.ForwardRef;
|
|
302
308
|
exports.FileWordIcon = require_FileWordIcon.ForwardRef;
|
|
303
309
|
exports.FileWordLinkIcon = require_FileWordLinkIcon.ForwardRef;
|
|
310
|
+
exports.FilterAltIcon = require_FilterAltIcon.ForwardRef;
|
|
304
311
|
exports.FolderIcon = require_FolderIcon.ForwardRef;
|
|
305
312
|
exports.FolderInboxIcon = require_FolderInboxIcon.ForwardRef;
|
|
306
313
|
exports.HistoryIcon = require_HistoryIcon.ForwardRef;
|
|
@@ -347,6 +354,7 @@ exports.ScoreIcon = require_ScoreIcon.ForwardRef;
|
|
|
347
354
|
exports.SironOneIcon = require_SironOneIcon.ForwardRef;
|
|
348
355
|
exports.SkipNextIcon = require_SkipNextIcon.ForwardRef;
|
|
349
356
|
exports.SkipPreviousIcon = require_SkipPreviousIcon.ForwardRef;
|
|
357
|
+
exports.StartsWithIcon = require_StartsWithIcon.ForwardRef;
|
|
350
358
|
exports.StatusApprovalPendingIcon = require_StatusApprovalPendingIcon.ForwardRef;
|
|
351
359
|
exports.StatusApprovalTriggeredIcon = require_StatusApprovalTriggeredIcon.ForwardRef;
|
|
352
360
|
exports.StatusApprovedIcon = require_StatusApprovedIcon.ForwardRef;
|
package/lib/index.mjs
CHANGED
|
@@ -50,148 +50,152 @@ import { ForwardRef as ForwardRef$45 } from "./icons/ChevronLeftIcon.mjs";
|
|
|
50
50
|
import { ForwardRef as ForwardRef$46 } from "./icons/ChevronRightIcon.mjs";
|
|
51
51
|
import { ForwardRef as ForwardRef$47 } from "./icons/ChevronUpIcon.mjs";
|
|
52
52
|
import { ForwardRef as ForwardRef$48 } from "./icons/CommentIcon.mjs";
|
|
53
|
-
import { ForwardRef as ForwardRef$49 } from "./icons/
|
|
54
|
-
import { ForwardRef as ForwardRef$50 } from "./icons/
|
|
55
|
-
import { ForwardRef as ForwardRef$51 } from "./icons/
|
|
56
|
-
import { ForwardRef as ForwardRef$52 } from "./icons/
|
|
57
|
-
import { ForwardRef as ForwardRef$53 } from "./icons/
|
|
58
|
-
import { ForwardRef as ForwardRef$54 } from "./icons/
|
|
59
|
-
import { ForwardRef as ForwardRef$55 } from "./icons/
|
|
60
|
-
import { ForwardRef as ForwardRef$
|
|
61
|
-
import { ForwardRef as ForwardRef$
|
|
62
|
-
import { ForwardRef as ForwardRef$
|
|
63
|
-
import { ForwardRef as ForwardRef$59 } from "./icons/
|
|
64
|
-
import { ForwardRef as ForwardRef$60 } from "./icons/
|
|
65
|
-
import { ForwardRef as ForwardRef$61 } from "./icons/
|
|
66
|
-
import { ForwardRef as ForwardRef$62 } from "./icons/
|
|
67
|
-
import { ForwardRef as ForwardRef$63 } from "./icons/
|
|
68
|
-
import { ForwardRef as ForwardRef$64 } from "./icons/
|
|
69
|
-
import { ForwardRef as ForwardRef$65 } from "./icons/
|
|
70
|
-
import { ForwardRef as ForwardRef$66 } from "./icons/
|
|
71
|
-
import { ForwardRef as ForwardRef$67 } from "./icons/
|
|
72
|
-
import { ForwardRef as ForwardRef$68 } from "./icons/
|
|
73
|
-
import { ForwardRef as ForwardRef$69 } from "./icons/
|
|
74
|
-
import { ForwardRef as ForwardRef$70 } from "./icons/
|
|
75
|
-
import { ForwardRef as ForwardRef$71 } from "./icons/
|
|
76
|
-
import { ForwardRef as ForwardRef$72 } from "./icons/
|
|
77
|
-
import { ForwardRef as ForwardRef$73 } from "./icons/
|
|
78
|
-
import { ForwardRef as ForwardRef$74 } from "./icons/
|
|
79
|
-
import { ForwardRef as ForwardRef$75 } from "./icons/
|
|
80
|
-
import { ForwardRef as ForwardRef$76 } from "./icons/
|
|
81
|
-
import { ForwardRef as ForwardRef$77 } from "./icons/
|
|
82
|
-
import { ForwardRef as ForwardRef$78 } from "./icons/
|
|
83
|
-
import { ForwardRef as ForwardRef$79 } from "./icons/
|
|
84
|
-
import { ForwardRef as ForwardRef$80 } from "./icons/
|
|
85
|
-
import { ForwardRef as ForwardRef$81 } from "./icons/
|
|
86
|
-
import { ForwardRef as ForwardRef$82 } from "./icons/
|
|
87
|
-
import { ForwardRef as ForwardRef$83 } from "./icons/
|
|
88
|
-
import { ForwardRef as ForwardRef$84 } from "./icons/
|
|
89
|
-
import { ForwardRef as ForwardRef$85 } from "./icons/
|
|
90
|
-
import { ForwardRef as ForwardRef$
|
|
91
|
-
import { ForwardRef as ForwardRef$88 } from "./icons/
|
|
92
|
-
import { ForwardRef as ForwardRef$89 } from "./icons/
|
|
93
|
-
import { ForwardRef as ForwardRef$
|
|
94
|
-
import { ForwardRef as ForwardRef$
|
|
95
|
-
import { ForwardRef as ForwardRef$91 } from "./icons/
|
|
96
|
-
import { ForwardRef as ForwardRef$92 } from "./icons/
|
|
97
|
-
import { ForwardRef as ForwardRef$
|
|
98
|
-
import { ForwardRef as ForwardRef$
|
|
99
|
-
import { ForwardRef as ForwardRef$
|
|
100
|
-
import { ForwardRef as ForwardRef$
|
|
101
|
-
import { ForwardRef as ForwardRef$
|
|
102
|
-
import { ForwardRef as ForwardRef$
|
|
103
|
-
import { ForwardRef as ForwardRef$
|
|
104
|
-
import { ForwardRef as ForwardRef$102 } from "./icons/
|
|
105
|
-
import { ForwardRef as ForwardRef$101 } from "./icons/
|
|
106
|
-
import { ForwardRef as ForwardRef$
|
|
107
|
-
import { ForwardRef as ForwardRef$
|
|
108
|
-
import { ForwardRef as ForwardRef$
|
|
109
|
-
import { ForwardRef as ForwardRef$
|
|
110
|
-
import { ForwardRef as ForwardRef$
|
|
111
|
-
import { ForwardRef as ForwardRef$
|
|
112
|
-
import { ForwardRef as ForwardRef$108 } from "./icons/
|
|
113
|
-
import { ForwardRef as ForwardRef$
|
|
114
|
-
import { ForwardRef as ForwardRef$
|
|
115
|
-
import { ForwardRef as ForwardRef$111 } from "./icons/
|
|
116
|
-
import { ForwardRef as ForwardRef$112 } from "./icons/
|
|
117
|
-
import { ForwardRef as ForwardRef$113 } from "./icons/
|
|
118
|
-
import { ForwardRef as ForwardRef$114 } from "./icons/
|
|
119
|
-
import { ForwardRef as ForwardRef$115 } from "./icons/
|
|
120
|
-
import { ForwardRef as ForwardRef$116 } from "./icons/
|
|
121
|
-
import { ForwardRef as ForwardRef$117 } from "./icons/
|
|
122
|
-
import { ForwardRef as ForwardRef$118 } from "./icons/
|
|
123
|
-
import { ForwardRef as ForwardRef$119 } from "./icons/
|
|
124
|
-
import { ForwardRef as ForwardRef$120 } from "./icons/
|
|
125
|
-
import { ForwardRef as ForwardRef$121 } from "./icons/
|
|
126
|
-
import { ForwardRef as ForwardRef$122 } from "./icons/
|
|
127
|
-
import { ForwardRef as ForwardRef$123 } from "./icons/
|
|
128
|
-
import { ForwardRef as ForwardRef$124 } from "./icons/
|
|
129
|
-
import { ForwardRef as ForwardRef$125 } from "./icons/
|
|
130
|
-
import { ForwardRef as ForwardRef$126 } from "./icons/
|
|
131
|
-
import { ForwardRef as ForwardRef$127 } from "./icons/
|
|
132
|
-
import { ForwardRef as ForwardRef$128 } from "./icons/
|
|
133
|
-
import { ForwardRef as ForwardRef$129 } from "./icons/
|
|
134
|
-
import { ForwardRef as ForwardRef$130 } from "./icons/
|
|
135
|
-
import { ForwardRef as ForwardRef$131 } from "./icons/
|
|
136
|
-
import { ForwardRef as ForwardRef$132 } from "./icons/
|
|
137
|
-
import { ForwardRef as ForwardRef$133 } from "./icons/
|
|
138
|
-
import { ForwardRef as ForwardRef$134 } from "./icons/
|
|
139
|
-
import { ForwardRef as ForwardRef$135 } from "./icons/
|
|
140
|
-
import { ForwardRef as ForwardRef$136 } from "./icons/
|
|
141
|
-
import { ForwardRef as ForwardRef$137 } from "./icons/
|
|
142
|
-
import { ForwardRef as ForwardRef$138 } from "./icons/
|
|
143
|
-
import { ForwardRef as ForwardRef$139 } from "./icons/
|
|
144
|
-
import { ForwardRef as ForwardRef$140 } from "./icons/
|
|
145
|
-
import { ForwardRef as ForwardRef$141 } from "./icons/
|
|
146
|
-
import { ForwardRef as ForwardRef$142 } from "./icons/
|
|
147
|
-
import { ForwardRef as ForwardRef$143 } from "./icons/
|
|
148
|
-
import { ForwardRef as ForwardRef$144 } from "./icons/
|
|
149
|
-
import { ForwardRef as ForwardRef$145 } from "./icons/
|
|
150
|
-
import { ForwardRef as ForwardRef$146 } from "./icons/
|
|
151
|
-
import { ForwardRef as ForwardRef$147 } from "./icons/
|
|
152
|
-
import { ForwardRef as ForwardRef$148 } from "./icons/
|
|
153
|
-
import { ForwardRef as ForwardRef$149 } from "./icons/
|
|
154
|
-
import { ForwardRef as ForwardRef$150 } from "./icons/
|
|
155
|
-
import { ForwardRef as ForwardRef$151 } from "./icons/
|
|
156
|
-
import { ForwardRef as ForwardRef$152 } from "./icons/
|
|
157
|
-
import { ForwardRef as ForwardRef$153 } from "./icons/
|
|
158
|
-
import { ForwardRef as ForwardRef$154 } from "./icons/
|
|
159
|
-
import { ForwardRef as ForwardRef$155 } from "./icons/
|
|
160
|
-
import { ForwardRef as ForwardRef$156 } from "./icons/
|
|
161
|
-
import { ForwardRef as ForwardRef$157 } from "./icons/
|
|
162
|
-
import { ForwardRef as ForwardRef$158 } from "./icons/
|
|
163
|
-
import { ForwardRef as ForwardRef$159 } from "./icons/
|
|
164
|
-
import { ForwardRef as ForwardRef$160 } from "./icons/
|
|
165
|
-
import { ForwardRef as ForwardRef$161 } from "./icons/
|
|
166
|
-
import { ForwardRef as ForwardRef$162 } from "./icons/
|
|
167
|
-
import { ForwardRef as ForwardRef$163 } from "./icons/
|
|
168
|
-
import { ForwardRef as ForwardRef$164 } from "./icons/
|
|
169
|
-
import { ForwardRef as ForwardRef$165 } from "./icons/
|
|
170
|
-
import { ForwardRef as ForwardRef$166 } from "./icons/
|
|
171
|
-
import { ForwardRef as ForwardRef$167 } from "./icons/
|
|
172
|
-
import { ForwardRef as ForwardRef$168 } from "./icons/
|
|
173
|
-
import { ForwardRef as ForwardRef$169 } from "./icons/
|
|
174
|
-
import { ForwardRef as ForwardRef$170 } from "./icons/
|
|
175
|
-
import { ForwardRef as ForwardRef$171 } from "./icons/
|
|
176
|
-
import { ForwardRef as ForwardRef$172 } from "./icons/
|
|
177
|
-
import { ForwardRef as ForwardRef$173 } from "./icons/
|
|
178
|
-
import { ForwardRef as ForwardRef$174 } from "./icons/
|
|
179
|
-
import { ForwardRef as ForwardRef$175 } from "./icons/
|
|
180
|
-
import { ForwardRef as ForwardRef$176 } from "./icons/
|
|
181
|
-
import { ForwardRef as ForwardRef$177 } from "./icons/
|
|
182
|
-
import { ForwardRef as ForwardRef$178 } from "./icons/
|
|
183
|
-
import { ForwardRef as ForwardRef$179 } from "./icons/
|
|
184
|
-
import { ForwardRef as ForwardRef$180 } from "./icons/
|
|
185
|
-
import { ForwardRef as ForwardRef$181 } from "./icons/
|
|
186
|
-
import { ForwardRef as ForwardRef$182 } from "./icons/
|
|
187
|
-
import { ForwardRef as ForwardRef$183 } from "./icons/
|
|
188
|
-
import { ForwardRef as ForwardRef$184 } from "./icons/
|
|
189
|
-
import { ForwardRef as ForwardRef$185 } from "./icons/
|
|
190
|
-
import { ForwardRef as ForwardRef$186 } from "./icons/
|
|
191
|
-
import { ForwardRef as ForwardRef$187 } from "./icons/
|
|
192
|
-
import { ForwardRef as ForwardRef$188 } from "./icons/
|
|
193
|
-
import { ForwardRef as ForwardRef$189 } from "./icons/
|
|
194
|
-
import { ForwardRef as ForwardRef$190 } from "./icons/
|
|
195
|
-
import { ForwardRef as ForwardRef$191 } from "./icons/
|
|
196
|
-
import { ForwardRef as ForwardRef$192 } from "./icons/
|
|
197
|
-
|
|
53
|
+
import { ForwardRef as ForwardRef$49 } from "./icons/ContainsIcon.mjs";
|
|
54
|
+
import { ForwardRef as ForwardRef$50 } from "./icons/CustomFormIcon.mjs";
|
|
55
|
+
import { ForwardRef as ForwardRef$51 } from "./icons/DateCreationIcon.mjs";
|
|
56
|
+
import { ForwardRef as ForwardRef$52 } from "./icons/DateDueIcon.mjs";
|
|
57
|
+
import { ForwardRef as ForwardRef$53 } from "./icons/DateExpireIcon.mjs";
|
|
58
|
+
import { ForwardRef as ForwardRef$54 } from "./icons/DateLastEditIcon.mjs";
|
|
59
|
+
import { ForwardRef as ForwardRef$55 } from "./icons/DatePendingIcon.mjs";
|
|
60
|
+
import { ForwardRef as ForwardRef$56 } from "./icons/DecisionIcon.mjs";
|
|
61
|
+
import { ForwardRef as ForwardRef$58 } from "./icons/DossierTemplateIcon.mjs";
|
|
62
|
+
import { ForwardRef as ForwardRef$57 } from "./icons/DossierIcon.mjs";
|
|
63
|
+
import { ForwardRef as ForwardRef$59 } from "./icons/DragHandleIcon.mjs";
|
|
64
|
+
import { ForwardRef as ForwardRef$60 } from "./icons/EditorAlignCenterIcon.mjs";
|
|
65
|
+
import { ForwardRef as ForwardRef$61 } from "./icons/EditorAlignJustifyIcon.mjs";
|
|
66
|
+
import { ForwardRef as ForwardRef$62 } from "./icons/EditorAlignLeftIcon.mjs";
|
|
67
|
+
import { ForwardRef as ForwardRef$63 } from "./icons/EditorAlignRightIcon.mjs";
|
|
68
|
+
import { ForwardRef as ForwardRef$64 } from "./icons/EditorBoldIcon.mjs";
|
|
69
|
+
import { ForwardRef as ForwardRef$65 } from "./icons/EditorCollectSignatureIcon.mjs";
|
|
70
|
+
import { ForwardRef as ForwardRef$66 } from "./icons/EditorColorFillIcon.mjs";
|
|
71
|
+
import { ForwardRef as ForwardRef$67 } from "./icons/EditorColorTextIcon.mjs";
|
|
72
|
+
import { ForwardRef as ForwardRef$68 } from "./icons/EditorCompareIcon.mjs";
|
|
73
|
+
import { ForwardRef as ForwardRef$69 } from "./icons/EditorComposeFilled1Icon.mjs";
|
|
74
|
+
import { ForwardRef as ForwardRef$70 } from "./icons/EditorComposeFilled2Icon.mjs";
|
|
75
|
+
import { ForwardRef as ForwardRef$71 } from "./icons/EditorEditSignatureIcon.mjs";
|
|
76
|
+
import { ForwardRef as ForwardRef$72 } from "./icons/EditorItalicIcon.mjs";
|
|
77
|
+
import { ForwardRef as ForwardRef$73 } from "./icons/EditorListBulletedIcon.mjs";
|
|
78
|
+
import { ForwardRef as ForwardRef$74 } from "./icons/EditorListNumberedIcon.mjs";
|
|
79
|
+
import { ForwardRef as ForwardRef$75 } from "./icons/EditorQuoteIcon.mjs";
|
|
80
|
+
import { ForwardRef as ForwardRef$76 } from "./icons/EditorRotateRightIcon.mjs";
|
|
81
|
+
import { ForwardRef as ForwardRef$77 } from "./icons/EditorSplitIcon.mjs";
|
|
82
|
+
import { ForwardRef as ForwardRef$78 } from "./icons/EditorStrikethroughIcon.mjs";
|
|
83
|
+
import { ForwardRef as ForwardRef$79 } from "./icons/EditorUnderlinedIcon.mjs";
|
|
84
|
+
import { ForwardRef as ForwardRef$80 } from "./icons/EmptyPlaceholderIcon.mjs";
|
|
85
|
+
import { ForwardRef as ForwardRef$81 } from "./icons/EntityAccountIcon.mjs";
|
|
86
|
+
import { ForwardRef as ForwardRef$82 } from "./icons/EntityAlertIcon.mjs";
|
|
87
|
+
import { ForwardRef as ForwardRef$83 } from "./icons/EntityBankMessageIcon.mjs";
|
|
88
|
+
import { ForwardRef as ForwardRef$84 } from "./icons/EntityCaseIcon.mjs";
|
|
89
|
+
import { ForwardRef as ForwardRef$85 } from "./icons/EntityGroupIcon.mjs";
|
|
90
|
+
import { ForwardRef as ForwardRef$86 } from "./icons/EntityHouseholdIcon.mjs";
|
|
91
|
+
import { ForwardRef as ForwardRef$88 } from "./icons/EntityLegalPersonIcon.mjs";
|
|
92
|
+
import { ForwardRef as ForwardRef$89 } from "./icons/EntityPhysicalPersonIcon.mjs";
|
|
93
|
+
import { ForwardRef as ForwardRef$90 } from "./icons/EntityScenarioIcon.mjs";
|
|
94
|
+
import { ForwardRef as ForwardRef$87 } from "./icons/EntityIcon.mjs";
|
|
95
|
+
import { ForwardRef as ForwardRef$91 } from "./icons/EqualIcon.mjs";
|
|
96
|
+
import { ForwardRef as ForwardRef$92 } from "./icons/ErrorIcon.mjs";
|
|
97
|
+
import { ForwardRef as ForwardRef$93 } from "./icons/ExpandTreeLessIcon.mjs";
|
|
98
|
+
import { ForwardRef as ForwardRef$94 } from "./icons/ExpandTreeMoreIcon.mjs";
|
|
99
|
+
import { ForwardRef as ForwardRef$96 } from "./icons/FileExcelLinkIcon.mjs";
|
|
100
|
+
import { ForwardRef as ForwardRef$95 } from "./icons/FileExcelIcon.mjs";
|
|
101
|
+
import { ForwardRef as ForwardRef$99 } from "./icons/FileImageLinkIcon.mjs";
|
|
102
|
+
import { ForwardRef as ForwardRef$98 } from "./icons/FileImageIcon.mjs";
|
|
103
|
+
import { ForwardRef as ForwardRef$100 } from "./icons/FileLinkIcon.mjs";
|
|
104
|
+
import { ForwardRef as ForwardRef$102 } from "./icons/FilePdfLinkIcon.mjs";
|
|
105
|
+
import { ForwardRef as ForwardRef$101 } from "./icons/FilePdfIcon.mjs";
|
|
106
|
+
import { ForwardRef as ForwardRef$104 } from "./icons/FilePowerpointLinkIcon.mjs";
|
|
107
|
+
import { ForwardRef as ForwardRef$103 } from "./icons/FilePowerpointIcon.mjs";
|
|
108
|
+
import { ForwardRef as ForwardRef$105 } from "./icons/FileStackIcon.mjs";
|
|
109
|
+
import { ForwardRef as ForwardRef$107 } from "./icons/FileWordLinkIcon.mjs";
|
|
110
|
+
import { ForwardRef as ForwardRef$106 } from "./icons/FileWordIcon.mjs";
|
|
111
|
+
import { ForwardRef as ForwardRef$97 } from "./icons/FileIcon.mjs";
|
|
112
|
+
import { ForwardRef as ForwardRef$108 } from "./icons/FilterAltIcon.mjs";
|
|
113
|
+
import { ForwardRef as ForwardRef$110 } from "./icons/FolderInboxIcon.mjs";
|
|
114
|
+
import { ForwardRef as ForwardRef$109 } from "./icons/FolderIcon.mjs";
|
|
115
|
+
import { ForwardRef as ForwardRef$111 } from "./icons/HistoryIcon.mjs";
|
|
116
|
+
import { ForwardRef as ForwardRef$112 } from "./icons/InfoIcon.mjs";
|
|
117
|
+
import { ForwardRef as ForwardRef$113 } from "./icons/InheritableIcon.mjs";
|
|
118
|
+
import { ForwardRef as ForwardRef$114 } from "./icons/LineAxisIcon.mjs";
|
|
119
|
+
import { ForwardRef as ForwardRef$115 } from "./icons/MenuBurgerIcon.mjs";
|
|
120
|
+
import { ForwardRef as ForwardRef$116 } from "./icons/MenuIcon.mjs";
|
|
121
|
+
import { ForwardRef as ForwardRef$117 } from "./icons/ModuleAdminIcon.mjs";
|
|
122
|
+
import { ForwardRef as ForwardRef$118 } from "./icons/ModuleAmlIcon.mjs";
|
|
123
|
+
import { ForwardRef as ForwardRef$119 } from "./icons/ModuleBookmarksIcon.mjs";
|
|
124
|
+
import { ForwardRef as ForwardRef$120 } from "./icons/ModuleClient360Icon.mjs";
|
|
125
|
+
import { ForwardRef as ForwardRef$121 } from "./icons/ModuleDashboardIcon.mjs";
|
|
126
|
+
import { ForwardRef as ForwardRef$122 } from "./icons/ModuleDetectIcon.mjs";
|
|
127
|
+
import { ForwardRef as ForwardRef$123 } from "./icons/ModuleFraudDetectionIcon.mjs";
|
|
128
|
+
import { ForwardRef as ForwardRef$124 } from "./icons/ModuleHomeIcon.mjs";
|
|
129
|
+
import { ForwardRef as ForwardRef$125 } from "./icons/ModuleQueuesIcon.mjs";
|
|
130
|
+
import { ForwardRef as ForwardRef$126 } from "./icons/ModuleReportsIcon.mjs";
|
|
131
|
+
import { ForwardRef as ForwardRef$127 } from "./icons/ModuleRiskScoringIcon.mjs";
|
|
132
|
+
import { ForwardRef as ForwardRef$128 } from "./icons/ModuleScreeningIcon.mjs";
|
|
133
|
+
import { ForwardRef as ForwardRef$129 } from "./icons/ModuleSearchIcon.mjs";
|
|
134
|
+
import { ForwardRef as ForwardRef$130 } from "./icons/ModuleTransactionsSanctionsScreeningIcon.mjs";
|
|
135
|
+
import { ForwardRef as ForwardRef$131 } from "./icons/NavigateFirstIcon.mjs";
|
|
136
|
+
import { ForwardRef as ForwardRef$132 } from "./icons/NavigateLastIcon.mjs";
|
|
137
|
+
import { ForwardRef as ForwardRef$133 } from "./icons/NavigateNextIcon.mjs";
|
|
138
|
+
import { ForwardRef as ForwardRef$134 } from "./icons/NavigatePreviousIcon.mjs";
|
|
139
|
+
import { ForwardRef as ForwardRef$135 } from "./icons/NoteIcon.mjs";
|
|
140
|
+
import { ForwardRef as ForwardRef$136 } from "./icons/OwnerIcon.mjs";
|
|
141
|
+
import { ForwardRef as ForwardRef$137 } from "./icons/PriorityImportantIcon.mjs";
|
|
142
|
+
import { ForwardRef as ForwardRef$138 } from "./icons/PriorityInformationalIcon.mjs";
|
|
143
|
+
import { ForwardRef as ForwardRef$139 } from "./icons/PriorityTrivialIcon.mjs";
|
|
144
|
+
import { ForwardRef as ForwardRef$140 } from "./icons/RegulationAircraftIcon.mjs";
|
|
145
|
+
import { ForwardRef as ForwardRef$141 } from "./icons/RegulationEntityIcon.mjs";
|
|
146
|
+
import { ForwardRef as ForwardRef$142 } from "./icons/RegulationPersonIcon.mjs";
|
|
147
|
+
import { ForwardRef as ForwardRef$143 } from "./icons/RegulationUnknownIcon.mjs";
|
|
148
|
+
import { ForwardRef as ForwardRef$144 } from "./icons/RegulationVesselIcon.mjs";
|
|
149
|
+
import { ForwardRef as ForwardRef$145 } from "./icons/RiskTrendingDownIcon.mjs";
|
|
150
|
+
import { ForwardRef as ForwardRef$146 } from "./icons/RiskTrendingFlatIcon.mjs";
|
|
151
|
+
import { ForwardRef as ForwardRef$147 } from "./icons/RiskTrendingUpIcon.mjs";
|
|
152
|
+
import { ForwardRef as ForwardRef$148 } from "./icons/ScoreIcon.mjs";
|
|
153
|
+
import { ForwardRef as ForwardRef$149 } from "./icons/SironOneIcon.mjs";
|
|
154
|
+
import { ForwardRef as ForwardRef$150 } from "./icons/SkipNextIcon.mjs";
|
|
155
|
+
import { ForwardRef as ForwardRef$151 } from "./icons/SkipPreviousIcon.mjs";
|
|
156
|
+
import { ForwardRef as ForwardRef$152 } from "./icons/StartsWithIcon.mjs";
|
|
157
|
+
import { ForwardRef as ForwardRef$153 } from "./icons/StatusApprovalPendingIcon.mjs";
|
|
158
|
+
import { ForwardRef as ForwardRef$154 } from "./icons/StatusApprovalTriggeredIcon.mjs";
|
|
159
|
+
import { ForwardRef as ForwardRef$155 } from "./icons/StatusApprovedIcon.mjs";
|
|
160
|
+
import { ForwardRef as ForwardRef$156 } from "./icons/StatusArchivedActiveIcon.mjs";
|
|
161
|
+
import { ForwardRef as ForwardRef$157 } from "./icons/StatusArchivedIcon.mjs";
|
|
162
|
+
import { ForwardRef as ForwardRef$158 } from "./icons/StatusCanceledIcon.mjs";
|
|
163
|
+
import { ForwardRef as ForwardRef$159 } from "./icons/StatusClosedIcon.mjs";
|
|
164
|
+
import { ForwardRef as ForwardRef$160 } from "./icons/StatusCompletedIcon.mjs";
|
|
165
|
+
import { ForwardRef as ForwardRef$161 } from "./icons/StatusErrorIcon.mjs";
|
|
166
|
+
import { ForwardRef as ForwardRef$162 } from "./icons/StatusEscalatedIcon.mjs";
|
|
167
|
+
import { ForwardRef as ForwardRef$163 } from "./icons/StatusFavoriteIcon.mjs";
|
|
168
|
+
import { ForwardRef as ForwardRef$164 } from "./icons/StatusFilledIcon.mjs";
|
|
169
|
+
import { ForwardRef as ForwardRef$165 } from "./icons/StatusInProgressIcon.mjs";
|
|
170
|
+
import { ForwardRef as ForwardRef$166 } from "./icons/StatusInReviewIcon.mjs";
|
|
171
|
+
import { ForwardRef as ForwardRef$167 } from "./icons/StatusOpenIcon.mjs";
|
|
172
|
+
import { ForwardRef as ForwardRef$168 } from "./icons/StatusParkedIcon.mjs";
|
|
173
|
+
import { ForwardRef as ForwardRef$169 } from "./icons/StatusPassivatedIcon.mjs";
|
|
174
|
+
import { ForwardRef as ForwardRef$170 } from "./icons/StatusPassiveIcon.mjs";
|
|
175
|
+
import { ForwardRef as ForwardRef$171 } from "./icons/StatusQualityControlIcon.mjs";
|
|
176
|
+
import { ForwardRef as ForwardRef$172 } from "./icons/StatusRejectedIcon.mjs";
|
|
177
|
+
import { ForwardRef as ForwardRef$173 } from "./icons/StatusSentToArchiveIcon.mjs";
|
|
178
|
+
import { ForwardRef as ForwardRef$174 } from "./icons/StatusSentToPassivateIcon.mjs";
|
|
179
|
+
import { ForwardRef as ForwardRef$175 } from "./icons/StatusWarningIcon.mjs";
|
|
180
|
+
import { ForwardRef as ForwardRef$176 } from "./icons/StatusWatchedIcon.mjs";
|
|
181
|
+
import { ForwardRef as ForwardRef$177 } from "./icons/SuccessIcon.mjs";
|
|
182
|
+
import { ForwardRef as ForwardRef$178 } from "./icons/SystemHelpIcon.mjs";
|
|
183
|
+
import { ForwardRef as ForwardRef$179 } from "./icons/SystemNotificationIcon.mjs";
|
|
184
|
+
import { ForwardRef as ForwardRef$180 } from "./icons/TagAddIcon.mjs";
|
|
185
|
+
import { ForwardRef as ForwardRef$181 } from "./icons/TagIcon.mjs";
|
|
186
|
+
import { ForwardRef as ForwardRef$182 } from "./icons/TaskIcon.mjs";
|
|
187
|
+
import { ForwardRef as ForwardRef$183 } from "./icons/TransactionIncomingIcon.mjs";
|
|
188
|
+
import { ForwardRef as ForwardRef$184 } from "./icons/TransactionOutgoingIcon.mjs";
|
|
189
|
+
import { ForwardRef as ForwardRef$185 } from "./icons/TypesIcon.mjs";
|
|
190
|
+
import { ForwardRef as ForwardRef$186 } from "./icons/UnfoldLessDoubleIcon.mjs";
|
|
191
|
+
import { ForwardRef as ForwardRef$187 } from "./icons/UnfoldMoreDoubleIcon.mjs";
|
|
192
|
+
import { ForwardRef as ForwardRef$188 } from "./icons/UpdateIcon.mjs";
|
|
193
|
+
import { ForwardRef as ForwardRef$189 } from "./icons/UserCurrentIcon.mjs";
|
|
194
|
+
import { ForwardRef as ForwardRef$190 } from "./icons/UserSystemIcon.mjs";
|
|
195
|
+
import { ForwardRef as ForwardRef$191 } from "./icons/ViewCardIcon.mjs";
|
|
196
|
+
import { ForwardRef as ForwardRef$192 } from "./icons/ViewGraphIcon.mjs";
|
|
197
|
+
import { ForwardRef as ForwardRef$193 } from "./icons/ViewNetworkIcon.mjs";
|
|
198
|
+
import { ForwardRef as ForwardRef$194 } from "./icons/ViewTableIcon.mjs";
|
|
199
|
+
import { ForwardRef as ForwardRef$195 } from "./icons/ViewTreeIcon.mjs";
|
|
200
|
+
import { ForwardRef as ForwardRef$196 } from "./icons/WarningIcon.mjs";
|
|
201
|
+
export { ForwardRef as ActionAddAltIcon, ForwardRef$1 as ActionAddIcon, ForwardRef$2 as ActionCancelIcon, ForwardRef$3 as ActionClearIcon, ForwardRef$4 as ActionCloseIcon, ForwardRef$5 as ActionDeleteIcon, ForwardRef$6 as ActionDockToRightIcon, ForwardRef$7 as ActionDownloadIcon, ForwardRef$8 as ActionEditIcon, ForwardRef$9 as ActionEraseIcon, ForwardRef$10 as ActionEscalateIcon, ForwardRef$11 as ActionExtandIcon, ForwardRef$12 as ActionFavoriteIcon, ForwardRef$13 as ActionInvestigateIcon, ForwardRef$14 as ActionLinkIcon, ForwardRef$15 as ActionLinkOffIcon, ForwardRef$16 as ActionLogoutIcon, ForwardRef$17 as ActionMarkAsDoneIcon, ForwardRef$18 as ActionOpenLinkIcon, ForwardRef$19 as ActionPinIcon, ForwardRef$20 as ActionPinOffIcon, ForwardRef$21 as ActionPreviewIcon, ForwardRef$22 as ActionPrintIcon, ForwardRef$23 as ActionRefreshIcon, ForwardRef$24 as ActionRemoveIcon, ForwardRef$25 as ActionResetSettingsIcon, ForwardRef$26 as ActionSaveIcon, ForwardRef$27 as ActionSearchIcon, ForwardRef$28 as ActionSidebarCollapseIcon, ForwardRef$29 as ActionSidebarExpandIcon, ForwardRef$30 as ActionSuspendIcon, ForwardRef$31 as ActionUnfavoriteIcon, ForwardRef$32 as ActionUnfoldLessIcon, ForwardRef$33 as ActionUnfoldMoreIcon, ForwardRef$34 as ActionUploadAndContinueIcon, ForwardRef$35 as ActionUploadIcon, ForwardRef$36 as ActionValidateIcon, ForwardRef$37 as ActionValueHideIcon, ForwardRef$38 as ActionValueRevealIcon, ForwardRef$39 as AiIcon, ForwardRef$40 as AssignmentTurnedInIcon, ForwardRef$41 as AttachmentsIcon, ForwardRef$42 as CaseIcon, ForwardRef$43 as CaseLockIcon, ForwardRef$44 as ChevronDownIcon, ForwardRef$45 as ChevronLeftIcon, ForwardRef$46 as ChevronRightIcon, ForwardRef$47 as ChevronUpIcon, ForwardRef$48 as CommentIcon, ForwardRef$49 as ContainsIcon, ForwardRef$50 as CustomFormIcon, ForwardRef$51 as DateCreationIcon, ForwardRef$52 as DateDueIcon, ForwardRef$53 as DateExpireIcon, ForwardRef$54 as DateLastEditIcon, ForwardRef$55 as DatePendingIcon, ForwardRef$56 as DecisionIcon, ForwardRef$57 as DossierIcon, ForwardRef$58 as DossierTemplateIcon, ForwardRef$59 as DragHandleIcon, ForwardRef$60 as EditorAlignCenterIcon, ForwardRef$61 as EditorAlignJustifyIcon, ForwardRef$62 as EditorAlignLeftIcon, ForwardRef$63 as EditorAlignRightIcon, ForwardRef$64 as EditorBoldIcon, ForwardRef$65 as EditorCollectSignatureIcon, ForwardRef$66 as EditorColorFillIcon, ForwardRef$67 as EditorColorTextIcon, ForwardRef$68 as EditorCompareIcon, ForwardRef$69 as EditorComposeFilled1Icon, ForwardRef$70 as EditorComposeFilled2Icon, ForwardRef$71 as EditorEditSignatureIcon, ForwardRef$72 as EditorItalicIcon, ForwardRef$73 as EditorListBulletedIcon, ForwardRef$74 as EditorListNumberedIcon, ForwardRef$75 as EditorQuoteIcon, ForwardRef$76 as EditorRotateRightIcon, ForwardRef$77 as EditorSplitIcon, ForwardRef$78 as EditorStrikethroughIcon, ForwardRef$79 as EditorUnderlinedIcon, ForwardRef$80 as EmptyPlaceholderIcon, ForwardRef$81 as EntityAccountIcon, ForwardRef$82 as EntityAlertIcon, ForwardRef$83 as EntityBankMessageIcon, ForwardRef$84 as EntityCaseIcon, ForwardRef$85 as EntityGroupIcon, ForwardRef$86 as EntityHouseholdIcon, ForwardRef$87 as EntityIcon, ForwardRef$88 as EntityLegalPersonIcon, ForwardRef$89 as EntityPhysicalPersonIcon, ForwardRef$90 as EntityScenarioIcon, ForwardRef$91 as EqualIcon, ForwardRef$92 as ErrorIcon, ForwardRef$93 as ExpandTreeLessIcon, ForwardRef$94 as ExpandTreeMoreIcon, ForwardRef$95 as FileExcelIcon, ForwardRef$96 as FileExcelLinkIcon, ForwardRef$97 as FileIcon, ForwardRef$98 as FileImageIcon, ForwardRef$99 as FileImageLinkIcon, ForwardRef$100 as FileLinkIcon, ForwardRef$101 as FilePdfIcon, ForwardRef$102 as FilePdfLinkIcon, ForwardRef$103 as FilePowerpointIcon, ForwardRef$104 as FilePowerpointLinkIcon, ForwardRef$105 as FileStackIcon, ForwardRef$106 as FileWordIcon, ForwardRef$107 as FileWordLinkIcon, ForwardRef$108 as FilterAltIcon, ForwardRef$109 as FolderIcon, ForwardRef$110 as FolderInboxIcon, ForwardRef$111 as HistoryIcon, IconContext, IconProvider, IconSVG, ForwardRef$112 as InfoIcon, ForwardRef$113 as InheritableIcon, ForwardRef$114 as LineAxisIcon, ForwardRef$115 as MenuBurgerIcon, ForwardRef$116 as MenuIcon, ForwardRef$117 as ModuleAdminIcon, ForwardRef$118 as ModuleAmlIcon, ForwardRef$119 as ModuleBookmarksIcon, ForwardRef$120 as ModuleClient360Icon, ForwardRef$121 as ModuleDashboardIcon, ForwardRef$122 as ModuleDetectIcon, ForwardRef$123 as ModuleFraudDetectionIcon, ForwardRef$124 as ModuleHomeIcon, ForwardRef$125 as ModuleQueuesIcon, ForwardRef$126 as ModuleReportsIcon, ForwardRef$127 as ModuleRiskScoringIcon, ForwardRef$128 as ModuleScreeningIcon, ForwardRef$129 as ModuleSearchIcon, ForwardRef$130 as ModuleTransactionsSanctionsScreeningIcon, ForwardRef$131 as NavigateFirstIcon, ForwardRef$132 as NavigateLastIcon, ForwardRef$133 as NavigateNextIcon, ForwardRef$134 as NavigatePreviousIcon, ForwardRef$135 as NoteIcon, ForwardRef$136 as OwnerIcon, ForwardRef$137 as PriorityImportantIcon, ForwardRef$138 as PriorityInformationalIcon, ForwardRef$139 as PriorityTrivialIcon, ForwardRef$140 as RegulationAircraftIcon, ForwardRef$141 as RegulationEntityIcon, ForwardRef$142 as RegulationPersonIcon, ForwardRef$143 as RegulationUnknownIcon, ForwardRef$144 as RegulationVesselIcon, ForwardRef$145 as RiskTrendingDownIcon, ForwardRef$146 as RiskTrendingFlatIcon, ForwardRef$147 as RiskTrendingUpIcon, ForwardRef$148 as ScoreIcon, ForwardRef$149 as SironOneIcon, ForwardRef$150 as SkipNextIcon, ForwardRef$151 as SkipPreviousIcon, ForwardRef$152 as StartsWithIcon, ForwardRef$153 as StatusApprovalPendingIcon, ForwardRef$154 as StatusApprovalTriggeredIcon, ForwardRef$155 as StatusApprovedIcon, ForwardRef$156 as StatusArchivedActiveIcon, ForwardRef$157 as StatusArchivedIcon, ForwardRef$158 as StatusCanceledIcon, ForwardRef$159 as StatusClosedIcon, ForwardRef$160 as StatusCompletedIcon, ForwardRef$161 as StatusErrorIcon, ForwardRef$162 as StatusEscalatedIcon, ForwardRef$163 as StatusFavoriteIcon, ForwardRef$164 as StatusFilledIcon, ForwardRef$165 as StatusInProgressIcon, ForwardRef$166 as StatusInReviewIcon, ForwardRef$167 as StatusOpenIcon, ForwardRef$168 as StatusParkedIcon, ForwardRef$169 as StatusPassivatedIcon, ForwardRef$170 as StatusPassiveIcon, ForwardRef$171 as StatusQualityControlIcon, ForwardRef$172 as StatusRejectedIcon, ForwardRef$173 as StatusSentToArchiveIcon, ForwardRef$174 as StatusSentToPassivateIcon, ForwardRef$175 as StatusWarningIcon, ForwardRef$176 as StatusWatchedIcon, ForwardRef$177 as SuccessIcon, ForwardRef$178 as SystemHelpIcon, ForwardRef$179 as SystemNotificationIcon, ForwardRef$180 as TagAddIcon, ForwardRef$181 as TagIcon, ForwardRef$182 as TaskIcon, ForwardRef$183 as TransactionIncomingIcon, ForwardRef$184 as TransactionOutgoingIcon, ForwardRef$185 as TypesIcon, ForwardRef$186 as UnfoldLessDoubleIcon, ForwardRef$187 as UnfoldMoreDoubleIcon, ForwardRef$188 as UpdateIcon, ForwardRef$189 as UserCurrentIcon, ForwardRef$190 as UserSystemIcon, ForwardRef$191 as ViewCardIcon, ForwardRef$192 as ViewGraphIcon, ForwardRef$193 as ViewNetworkIcon, ForwardRef$194 as ViewTableIcon, ForwardRef$195 as ViewTreeIcon, ForwardRef$196 as WarningIcon, withIconContext };
|
package/package.json
CHANGED
package/svg/Contains.svg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M19 3C20.1 3 21 3.89 21 5V19C21 20.1 20.1 21 19 21H4.99023C3.88023 21 3 20.1 3 19L3.00977 5C3.00977 3.89 3.88023 3 4.99023 3H19ZM4.99023 5L5 19H19V5H4.99023ZM12.2803 15H11.3311L10.666 13.1738H7.74707L7.08301 15H6.13867L8.7998 8.01953H9.61035L12.2803 15ZM17.8818 8.69141L14.0479 14.2471H18.0352V15H12.958V14.3096L16.7832 8.77734H13.0205V8.01953H17.8818V8.69141ZM8.02148 12.416H10.3906L9.20508 9.15918L8.02148 12.416Z" />
|
|
3
|
+
</svg>
|
package/svg/Equal.json
ADDED
package/svg/Equal.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24px" viewBox="0 0 24 24" width="24px"><g><path d="M0,0h24 M24,24H0" fill="none"/><path d="M4.25,5.61C6.27,8.2,10,13,10,13v6c0,0.55,0.45,1,1,1h2c0.55,0,1-0.45,1-1v-6c0,0,3.72-4.8,5.74-7.39 C20.25,4.95,19.78,4,18.95,4H5.04C4.21,4,3.74,4.95,4.25,5.61z"/><path d="M0,0h24v24H0V0z" fill="none"/></g></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15 3C16.1 3 17 3.89 17 5H4.99023L5 19H17C17 20.1 16.1 21 15 21H4.99023C3.88023 21 3 20.1 3 19L3.00977 5C3.00977 3.89 3.88023 3 4.99023 3H15ZM12.2803 15H11.3311L10.666 13.1738H7.74707L7.08301 15H6.13867L8.7998 8.01953H9.61035L12.2803 15ZM17.8818 8.69141L14.0479 14.2471H18.0352V15H12.958V14.3096L16.7832 8.77734H13.0205V8.01953H17.8818V8.69141ZM8.02148 12.416H10.3906L9.20508 9.15918L8.02148 12.416Z" />
|
|
3
|
+
</svg>
|