@baseline-ui/icons 0.7.3 → 0.8.1
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/12/index.d.mts +15 -1
- package/12/index.d.ts +15 -1
- package/12/index.js +16 -229
- package/12/index.mjs +3 -198
- package/16/index.d.mts +113 -1
- package/16/index.d.ts +113 -1
- package/16/index.js +82 -719
- package/16/index.mjs +3 -671
- package/20/index.d.mts +131 -1
- package/20/index.d.ts +131 -1
- package/20/index.js +86 -591
- package/20/index.mjs +3 -548
- package/24/index.d.mts +489 -1
- package/24/index.d.ts +489 -1
- package/24/index.js +262 -543
- package/24/index.mjs +3 -503
- package/8/index.d.mts +11 -1
- package/8/index.d.ts +11 -1
- package/8/index.js +18 -258
- package/8/index.mjs +3 -223
- package/dist/index.css +1 -4
- package/dist/index.js +31 -114
- package/dist/index.mjs +8 -79
- package/package.json +2 -2
package/12/index.d.mts
CHANGED
|
@@ -6,16 +6,30 @@ type SVGRProps = {
|
|
|
6
6
|
size?: CSSProperties["width"];
|
|
7
7
|
};
|
|
8
8
|
|
|
9
|
+
declare const SvgCaretDownIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
10
|
+
|
|
9
11
|
declare const SvgCaretLeftIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
10
12
|
|
|
11
13
|
declare const SvgCaretRightIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
12
14
|
|
|
15
|
+
declare const SvgCaretUpIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
16
|
+
|
|
13
17
|
declare const SvgCheckmarkIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
14
18
|
|
|
15
19
|
declare const SvgEllipseIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
16
20
|
|
|
21
|
+
declare const SvgLockFilledIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
22
|
+
|
|
23
|
+
declare const SvgLockIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
24
|
+
|
|
17
25
|
declare const SvgMinusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
18
26
|
|
|
27
|
+
declare const SvgMoreIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
28
|
+
|
|
29
|
+
declare const SvgPlaceholderIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
30
|
+
|
|
31
|
+
declare const SvgPlusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
32
|
+
|
|
19
33
|
declare const SvgXIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
20
34
|
|
|
21
|
-
export { SvgCaretLeftIcon as CaretLeftIcon, SvgCaretRightIcon as CaretRightIcon, SvgCheckmarkIcon as CheckmarkIcon, SvgEllipseIcon as EllipseIcon, SvgMinusIcon as MinusIcon, SvgXIcon as XIcon };
|
|
35
|
+
export { SvgCaretDownIcon as CaretDownIcon, SvgCaretLeftIcon as CaretLeftIcon, SvgCaretRightIcon as CaretRightIcon, SvgCaretUpIcon as CaretUpIcon, SvgCheckmarkIcon as CheckmarkIcon, SvgEllipseIcon as EllipseIcon, SvgLockFilledIcon as LockFilledIcon, SvgLockIcon as LockIcon, SvgMinusIcon as MinusIcon, SvgMoreIcon as MoreIcon, SvgPlaceholderIcon as PlaceholderIcon, SvgPlusIcon as PlusIcon, SvgXIcon as XIcon };
|
package/12/index.d.ts
CHANGED
|
@@ -6,16 +6,30 @@ type SVGRProps = {
|
|
|
6
6
|
size?: CSSProperties["width"];
|
|
7
7
|
};
|
|
8
8
|
|
|
9
|
+
declare const SvgCaretDownIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
10
|
+
|
|
9
11
|
declare const SvgCaretLeftIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
10
12
|
|
|
11
13
|
declare const SvgCaretRightIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
12
14
|
|
|
15
|
+
declare const SvgCaretUpIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
16
|
+
|
|
13
17
|
declare const SvgCheckmarkIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
14
18
|
|
|
15
19
|
declare const SvgEllipseIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
16
20
|
|
|
21
|
+
declare const SvgLockFilledIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
22
|
+
|
|
23
|
+
declare const SvgLockIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
24
|
+
|
|
17
25
|
declare const SvgMinusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
18
26
|
|
|
27
|
+
declare const SvgMoreIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
28
|
+
|
|
29
|
+
declare const SvgPlaceholderIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
30
|
+
|
|
31
|
+
declare const SvgPlusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
32
|
+
|
|
19
33
|
declare const SvgXIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
20
34
|
|
|
21
|
-
export { SvgCaretLeftIcon as CaretLeftIcon, SvgCaretRightIcon as CaretRightIcon, SvgCheckmarkIcon as CheckmarkIcon, SvgEllipseIcon as EllipseIcon, SvgMinusIcon as MinusIcon, SvgXIcon as XIcon };
|
|
35
|
+
export { SvgCaretDownIcon as CaretDownIcon, SvgCaretLeftIcon as CaretLeftIcon, SvgCaretRightIcon as CaretRightIcon, SvgCaretUpIcon as CaretUpIcon, SvgCheckmarkIcon as CheckmarkIcon, SvgEllipseIcon as EllipseIcon, SvgLockFilledIcon as LockFilledIcon, SvgLockIcon as LockIcon, SvgMinusIcon as MinusIcon, SvgMoreIcon as MoreIcon, SvgPlaceholderIcon as PlaceholderIcon, SvgPlusIcon as PlusIcon, SvgXIcon as XIcon };
|
package/12/index.js
CHANGED
|
@@ -1,232 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
1
|
+
'use strict';
|
|
19
2
|
|
|
20
|
-
|
|
21
|
-
var __exports = {};
|
|
22
|
-
__export(__exports, {
|
|
23
|
-
CaretLeftIcon: () => CaretLeftIcon_default,
|
|
24
|
-
CaretRightIcon: () => CaretRightIcon_default,
|
|
25
|
-
CheckmarkIcon: () => CheckmarkIcon_default,
|
|
26
|
-
EllipseIcon: () => EllipseIcon_default,
|
|
27
|
-
MinusIcon: () => MinusIcon_default,
|
|
28
|
-
XIcon: () => XIcon_default
|
|
29
|
-
});
|
|
30
|
-
module.exports = __toCommonJS(__exports);
|
|
3
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
31
4
|
|
|
32
|
-
|
|
33
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
34
|
-
var SvgCaretLeftIcon = ({
|
|
35
|
-
title,
|
|
36
|
-
titleId,
|
|
37
|
-
...props
|
|
38
|
-
}) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
39
|
-
"svg",
|
|
40
|
-
{
|
|
41
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
42
|
-
width: props.size || "1em",
|
|
43
|
-
height: props.size || "1em",
|
|
44
|
-
fill: "none",
|
|
45
|
-
viewBox: "0 0 12 12",
|
|
46
|
-
"aria-labelledby": titleId,
|
|
47
|
-
...props,
|
|
48
|
-
children: [
|
|
49
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { id: titleId, children: title }) : null,
|
|
50
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
51
|
-
"path",
|
|
52
|
-
{
|
|
53
|
-
fill: "currentColor",
|
|
54
|
-
fillRule: "evenodd",
|
|
55
|
-
d: "M8.03 9.53a.75.75 0 0 0 0-1.06L5.56 6l2.47-2.47a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06 0",
|
|
56
|
-
clipRule: "evenodd"
|
|
57
|
-
}
|
|
58
|
-
)
|
|
59
|
-
]
|
|
60
|
-
}
|
|
61
|
-
);
|
|
62
|
-
var CaretLeftIcon_default = SvgCaretLeftIcon;
|
|
5
|
+
var V=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M9.53 3.97a.75.75 0 0 0-1.06 0L6 6.44 3.53 3.97a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l3-3a.75.75 0 0 0 0-1.06",clipRule:"evenodd"})]}),g=V;var w=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.03 9.53a.75.75 0 0 0 0-1.06L5.56 6l2.47-2.47a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06 0",clipRule:"evenodd"})]}),G=w;var R=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.97 2.47a.75.75 0 0 0 0 1.06L6.44 6 3.97 8.47a.75.75 0 0 0 1.06 1.06l3-3a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 0 0-1.06 0",clipRule:"evenodd"})]}),P=R;var x=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M2.47 8.03a.75.75 0 0 0 1.06 0L6 5.56l2.47 2.47a.75.75 0 0 0 1.06-1.06l-3-3a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 0 0 0 1.06",clipRule:"evenodd"})]}),z=x;var I=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("g",{clipPath:"url(#checkmark-icon_svg__a)",children:jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.03 2.845a.75.75 0 0 1 0 1.06l-6.53 6.53-3.53-3.53a.75.75 0 0 1 1.06-1.06l2.47 2.47 5.47-5.47a.75.75 0 0 1 1.06 0",clipRule:"evenodd"})}),jsxRuntime.jsx("defs",{children:jsxRuntime.jsx("clipPath",{id:"checkmark-icon_svg__a",children:jsxRuntime.jsx("path",{fill:"#fff",d:"M0 0h12v12H0z"})})})]}),C=I;var E=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M6 10.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9M6 12A6 6 0 1 0 6 0a6 6 0 0 0 0 12",clipRule:"evenodd"})]}),L=E;var H=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M4.75 3.5a1.25 1.25 0 1 1 2.5 0v.75h-2.5zm-1.5.75V3.5a2.75 2.75 0 0 1 5.5 0v.75H9c.966 0 1.75.784 1.75 1.75v3A1.75 1.75 0 0 1 9 10.75H3A1.75 1.75 0 0 1 1.25 9V6c0-.966.784-1.75 1.75-1.75z",clipRule:"evenodd"})]}),k=H;var _=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M4.75 3.5a1.25 1.25 0 1 1 2.5 0v.75h-2.5zm-1.5.75V3.5a2.75 2.75 0 0 1 5.5 0v.75H9c.966 0 1.75.784 1.75 1.75v3A1.75 1.75 0 0 1 9 10.75H3A1.75 1.75 0 0 1 1.25 9V6c0-.966.784-1.75 1.75-1.75zM8 5.75H3a.25.25 0 0 0-.25.25v3c0 .138.112.25.25.25h6A.25.25 0 0 0 9.25 9V6A.25.25 0 0 0 9 5.75z",clipRule:"evenodd"})]}),D=_;var U=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.75 6a.75.75 0 0 1-.75.75H1a.75.75 0 0 1 0-1.5h10a.75.75 0 0 1 .75.75",clipRule:"evenodd"})]}),X=U;var J=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M2.5 6A1.25 1.25 0 1 1 0 6a1.25 1.25 0 0 1 2.5 0m4.75 0a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0m3.5 1.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5",clipRule:"evenodd"})]}),K=J;var O=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M1.75 4.5a2.75 2.75 0 0 1 5.396-.75H5c-.69 0-1.25.56-1.25 1.25v2.146a2.75 2.75 0 0 1-2-2.646m2 4.184A4.251 4.251 0 1 1 8.684 3.75H10.5c.69 0 1.25.56 1.25 1.25v5.5c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25zm1.5 1.566v-5h5v5z",clipRule:"evenodd"})]}),Q=O;var W=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fillRule:"evenodd",d:"M6 .25a.75.75 0 0 1 .75.75v4.25H11a.75.75 0 0 1 0 1.5H6.75V11a.75.75 0 0 1-1.5 0V6.75H1a.75.75 0 0 1 0-1.5h4.25V1A.75.75 0 0 1 6 .25",clipRule:"evenodd"})]}),Y=W;var $=({title:o,titleId:l,...e})=>jsxRuntime.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsxRuntime.jsx("title",{id:l,children:o}):null,jsxRuntime.jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.243 1.757a.75.75 0 0 1 0 1.061L7.061 6l3.182 3.182a.75.75 0 0 1-1.06 1.06L6 7.062l-3.182 3.182a.75.75 0 1 1-1.06-1.061L4.94 6 1.758 2.818a.75.75 0 1 1 1.06-1.06L6 4.938l3.182-3.182a.75.75 0 0 1 1.061 0",clipRule:"evenodd"})]}),j=$;
|
|
63
6
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
viewBox: "0 0 12 12",
|
|
78
|
-
"aria-labelledby": titleId,
|
|
79
|
-
...props,
|
|
80
|
-
children: [
|
|
81
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("title", { id: titleId, children: title }) : null,
|
|
82
|
-
/* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
83
|
-
"path",
|
|
84
|
-
{
|
|
85
|
-
fill: "currentColor",
|
|
86
|
-
fillRule: "evenodd",
|
|
87
|
-
d: "M3.97 2.47a.75.75 0 0 0 0 1.06L6.44 6 3.97 8.47a.75.75 0 0 0 1.06 1.06l3-3a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 0 0-1.06 0",
|
|
88
|
-
clipRule: "evenodd"
|
|
89
|
-
}
|
|
90
|
-
)
|
|
91
|
-
]
|
|
92
|
-
}
|
|
93
|
-
);
|
|
94
|
-
var CaretRightIcon_default = SvgCaretRightIcon;
|
|
95
|
-
|
|
96
|
-
// src/12/CheckmarkIcon.tsx
|
|
97
|
-
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
98
|
-
var SvgCheckmarkIcon = ({
|
|
99
|
-
title,
|
|
100
|
-
titleId,
|
|
101
|
-
...props
|
|
102
|
-
}) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
103
|
-
"svg",
|
|
104
|
-
{
|
|
105
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
106
|
-
width: props.size || "1em",
|
|
107
|
-
height: props.size || "1em",
|
|
108
|
-
fill: "none",
|
|
109
|
-
viewBox: "0 0 12 12",
|
|
110
|
-
"aria-labelledby": titleId,
|
|
111
|
-
...props,
|
|
112
|
-
children: [
|
|
113
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("title", { id: titleId, children: title }) : null,
|
|
114
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("g", { clipPath: "url(#checkmark-icon_svg__a)", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
115
|
-
"path",
|
|
116
|
-
{
|
|
117
|
-
fill: "currentColor",
|
|
118
|
-
fillRule: "evenodd",
|
|
119
|
-
d: "M11.03 2.845a.75.75 0 0 1 0 1.06l-6.53 6.53-3.53-3.53a.75.75 0 0 1 1.06-1.06l2.47 2.47 5.47-5.47a.75.75 0 0 1 1.06 0",
|
|
120
|
-
clipRule: "evenodd"
|
|
121
|
-
}
|
|
122
|
-
) }),
|
|
123
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("clipPath", { id: "checkmark-icon_svg__a", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("path", { fill: "#fff", d: "M0 0h12v12H0z" }) }) })
|
|
124
|
-
]
|
|
125
|
-
}
|
|
126
|
-
);
|
|
127
|
-
var CheckmarkIcon_default = SvgCheckmarkIcon;
|
|
128
|
-
|
|
129
|
-
// src/12/EllipseIcon.tsx
|
|
130
|
-
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
131
|
-
var SvgEllipseIcon = ({
|
|
132
|
-
title,
|
|
133
|
-
titleId,
|
|
134
|
-
...props
|
|
135
|
-
}) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
136
|
-
"svg",
|
|
137
|
-
{
|
|
138
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
139
|
-
width: props.size || "1em",
|
|
140
|
-
height: props.size || "1em",
|
|
141
|
-
fill: "none",
|
|
142
|
-
viewBox: "0 0 12 12",
|
|
143
|
-
"aria-labelledby": titleId,
|
|
144
|
-
...props,
|
|
145
|
-
children: [
|
|
146
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("title", { id: titleId, children: title }) : null,
|
|
147
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
148
|
-
"path",
|
|
149
|
-
{
|
|
150
|
-
fill: "currentColor",
|
|
151
|
-
fillRule: "evenodd",
|
|
152
|
-
d: "M6 10.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9M6 12A6 6 0 1 0 6 0a6 6 0 0 0 0 12",
|
|
153
|
-
clipRule: "evenodd"
|
|
154
|
-
}
|
|
155
|
-
)
|
|
156
|
-
]
|
|
157
|
-
}
|
|
158
|
-
);
|
|
159
|
-
var EllipseIcon_default = SvgEllipseIcon;
|
|
160
|
-
|
|
161
|
-
// src/12/MinusIcon.tsx
|
|
162
|
-
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
163
|
-
var SvgMinusIcon = ({
|
|
164
|
-
title,
|
|
165
|
-
titleId,
|
|
166
|
-
...props
|
|
167
|
-
}) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
|
168
|
-
"svg",
|
|
169
|
-
{
|
|
170
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
171
|
-
width: props.size || "1em",
|
|
172
|
-
height: props.size || "1em",
|
|
173
|
-
fill: "none",
|
|
174
|
-
viewBox: "0 0 12 12",
|
|
175
|
-
"aria-labelledby": titleId,
|
|
176
|
-
...props,
|
|
177
|
-
children: [
|
|
178
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("title", { id: titleId, children: title }) : null,
|
|
179
|
-
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
180
|
-
"path",
|
|
181
|
-
{
|
|
182
|
-
fill: "currentColor",
|
|
183
|
-
fillRule: "evenodd",
|
|
184
|
-
d: "M11.75 6a.75.75 0 0 1-.75.75H1a.75.75 0 0 1 0-1.5h10a.75.75 0 0 1 .75.75",
|
|
185
|
-
clipRule: "evenodd"
|
|
186
|
-
}
|
|
187
|
-
)
|
|
188
|
-
]
|
|
189
|
-
}
|
|
190
|
-
);
|
|
191
|
-
var MinusIcon_default = SvgMinusIcon;
|
|
192
|
-
|
|
193
|
-
// src/12/XIcon.tsx
|
|
194
|
-
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
195
|
-
var SvgXIcon = ({
|
|
196
|
-
title,
|
|
197
|
-
titleId,
|
|
198
|
-
...props
|
|
199
|
-
}) => /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
|
|
200
|
-
"svg",
|
|
201
|
-
{
|
|
202
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
203
|
-
width: props.size || "1em",
|
|
204
|
-
height: props.size || "1em",
|
|
205
|
-
fill: "none",
|
|
206
|
-
viewBox: "0 0 12 12",
|
|
207
|
-
"aria-labelledby": titleId,
|
|
208
|
-
...props,
|
|
209
|
-
children: [
|
|
210
|
-
title ? /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("title", { id: titleId, children: title }) : null,
|
|
211
|
-
/* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
212
|
-
"path",
|
|
213
|
-
{
|
|
214
|
-
fill: "currentColor",
|
|
215
|
-
fillRule: "evenodd",
|
|
216
|
-
d: "M10.243 1.757a.75.75 0 0 1 0 1.061L7.061 6l3.182 3.182a.75.75 0 0 1-1.06 1.06L6 7.062l-3.182 3.182a.75.75 0 1 1-1.06-1.061L4.94 6 1.758 2.818a.75.75 0 1 1 1.06-1.06L6 4.938l3.182-3.182a.75.75 0 0 1 1.061 0",
|
|
217
|
-
clipRule: "evenodd"
|
|
218
|
-
}
|
|
219
|
-
)
|
|
220
|
-
]
|
|
221
|
-
}
|
|
222
|
-
);
|
|
223
|
-
var XIcon_default = SvgXIcon;
|
|
224
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
225
|
-
0 && (module.exports = {
|
|
226
|
-
CaretLeftIcon,
|
|
227
|
-
CaretRightIcon,
|
|
228
|
-
CheckmarkIcon,
|
|
229
|
-
EllipseIcon,
|
|
230
|
-
MinusIcon,
|
|
231
|
-
XIcon
|
|
232
|
-
});
|
|
7
|
+
exports.CaretDownIcon = g;
|
|
8
|
+
exports.CaretLeftIcon = G;
|
|
9
|
+
exports.CaretRightIcon = P;
|
|
10
|
+
exports.CaretUpIcon = z;
|
|
11
|
+
exports.CheckmarkIcon = C;
|
|
12
|
+
exports.EllipseIcon = L;
|
|
13
|
+
exports.LockFilledIcon = k;
|
|
14
|
+
exports.LockIcon = D;
|
|
15
|
+
exports.MinusIcon = X;
|
|
16
|
+
exports.MoreIcon = K;
|
|
17
|
+
exports.PlaceholderIcon = Q;
|
|
18
|
+
exports.PlusIcon = Y;
|
|
19
|
+
exports.XIcon = j;
|
package/12/index.mjs
CHANGED
|
@@ -1,200 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
-
var SvgCaretLeftIcon = ({
|
|
4
|
-
title,
|
|
5
|
-
titleId,
|
|
6
|
-
...props
|
|
7
|
-
}) => /* @__PURE__ */ jsxs(
|
|
8
|
-
"svg",
|
|
9
|
-
{
|
|
10
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
-
width: props.size || "1em",
|
|
12
|
-
height: props.size || "1em",
|
|
13
|
-
fill: "none",
|
|
14
|
-
viewBox: "0 0 12 12",
|
|
15
|
-
"aria-labelledby": titleId,
|
|
16
|
-
...props,
|
|
17
|
-
children: [
|
|
18
|
-
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
19
|
-
/* @__PURE__ */ jsx(
|
|
20
|
-
"path",
|
|
21
|
-
{
|
|
22
|
-
fill: "currentColor",
|
|
23
|
-
fillRule: "evenodd",
|
|
24
|
-
d: "M8.03 9.53a.75.75 0 0 0 0-1.06L5.56 6l2.47-2.47a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06 0",
|
|
25
|
-
clipRule: "evenodd"
|
|
26
|
-
}
|
|
27
|
-
)
|
|
28
|
-
]
|
|
29
|
-
}
|
|
30
|
-
);
|
|
31
|
-
var CaretLeftIcon_default = SvgCaretLeftIcon;
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
32
2
|
|
|
33
|
-
|
|
34
|
-
import { jsx as jsx2, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
35
|
-
var SvgCaretRightIcon = ({
|
|
36
|
-
title,
|
|
37
|
-
titleId,
|
|
38
|
-
...props
|
|
39
|
-
}) => /* @__PURE__ */ jsxs2(
|
|
40
|
-
"svg",
|
|
41
|
-
{
|
|
42
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
-
width: props.size || "1em",
|
|
44
|
-
height: props.size || "1em",
|
|
45
|
-
fill: "none",
|
|
46
|
-
viewBox: "0 0 12 12",
|
|
47
|
-
"aria-labelledby": titleId,
|
|
48
|
-
...props,
|
|
49
|
-
children: [
|
|
50
|
-
title ? /* @__PURE__ */ jsx2("title", { id: titleId, children: title }) : null,
|
|
51
|
-
/* @__PURE__ */ jsx2(
|
|
52
|
-
"path",
|
|
53
|
-
{
|
|
54
|
-
fill: "currentColor",
|
|
55
|
-
fillRule: "evenodd",
|
|
56
|
-
d: "M3.97 2.47a.75.75 0 0 0 0 1.06L6.44 6 3.97 8.47a.75.75 0 0 0 1.06 1.06l3-3a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 0 0-1.06 0",
|
|
57
|
-
clipRule: "evenodd"
|
|
58
|
-
}
|
|
59
|
-
)
|
|
60
|
-
]
|
|
61
|
-
}
|
|
62
|
-
);
|
|
63
|
-
var CaretRightIcon_default = SvgCaretRightIcon;
|
|
3
|
+
var V=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fillRule:"evenodd",d:"M9.53 3.97a.75.75 0 0 0-1.06 0L6 6.44 3.53 3.97a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l3-3a.75.75 0 0 0 0-1.06",clipRule:"evenodd"})]}),g=V;var w=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.03 9.53a.75.75 0 0 0 0-1.06L5.56 6l2.47-2.47a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06 0",clipRule:"evenodd"})]}),G=w;var R=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M3.97 2.47a.75.75 0 0 0 0 1.06L6.44 6 3.97 8.47a.75.75 0 0 0 1.06 1.06l3-3a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 0 0-1.06 0",clipRule:"evenodd"})]}),P=R;var x=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fillRule:"evenodd",d:"M2.47 8.03a.75.75 0 0 0 1.06 0L6 5.56l2.47 2.47a.75.75 0 0 0 1.06-1.06l-3-3a.75.75 0 0 0-1.06 0l-3 3a.75.75 0 0 0 0 1.06",clipRule:"evenodd"})]}),z=x;var I=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("g",{clipPath:"url(#checkmark-icon_svg__a)",children:jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.03 2.845a.75.75 0 0 1 0 1.06l-6.53 6.53-3.53-3.53a.75.75 0 0 1 1.06-1.06l2.47 2.47 5.47-5.47a.75.75 0 0 1 1.06 0",clipRule:"evenodd"})}),jsx("defs",{children:jsx("clipPath",{id:"checkmark-icon_svg__a",children:jsx("path",{fill:"#fff",d:"M0 0h12v12H0z"})})})]}),C=I;var E=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M6 10.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9M6 12A6 6 0 1 0 6 0a6 6 0 0 0 0 12",clipRule:"evenodd"})]}),L=E;var H=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fillRule:"evenodd",d:"M4.75 3.5a1.25 1.25 0 1 1 2.5 0v.75h-2.5zm-1.5.75V3.5a2.75 2.75 0 0 1 5.5 0v.75H9c.966 0 1.75.784 1.75 1.75v3A1.75 1.75 0 0 1 9 10.75H3A1.75 1.75 0 0 1 1.25 9V6c0-.966.784-1.75 1.75-1.75z",clipRule:"evenodd"})]}),k=H;var _=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fillRule:"evenodd",d:"M4.75 3.5a1.25 1.25 0 1 1 2.5 0v.75h-2.5zm-1.5.75V3.5a2.75 2.75 0 0 1 5.5 0v.75H9c.966 0 1.75.784 1.75 1.75v3A1.75 1.75 0 0 1 9 10.75H3A1.75 1.75 0 0 1 1.25 9V6c0-.966.784-1.75 1.75-1.75zM8 5.75H3a.25.25 0 0 0-.25.25v3c0 .138.112.25.25.25h6A.25.25 0 0 0 9.25 9V6A.25.25 0 0 0 9 5.75z",clipRule:"evenodd"})]}),D=_;var U=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M11.75 6a.75.75 0 0 1-.75.75H1a.75.75 0 0 1 0-1.5h10a.75.75 0 0 1 .75.75",clipRule:"evenodd"})]}),X=U;var J=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fillRule:"evenodd",d:"M2.5 6A1.25 1.25 0 1 1 0 6a1.25 1.25 0 0 1 2.5 0m4.75 0a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0m3.5 1.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5",clipRule:"evenodd"})]}),K=J;var O=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fillRule:"evenodd",d:"M1.75 4.5a2.75 2.75 0 0 1 5.396-.75H5c-.69 0-1.25.56-1.25 1.25v2.146a2.75 2.75 0 0 1-2-2.646m2 4.184A4.251 4.251 0 1 1 8.684 3.75H10.5c.69 0 1.25.56 1.25 1.25v5.5c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25zm1.5 1.566v-5h5v5z",clipRule:"evenodd"})]}),Q=O;var W=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"currentColor",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fillRule:"evenodd",d:"M6 .25a.75.75 0 0 1 .75.75v4.25H11a.75.75 0 0 1 0 1.5H6.75V11a.75.75 0 0 1-1.5 0V6.75H1a.75.75 0 0 1 0-1.5h4.25V1A.75.75 0 0 1 6 .25",clipRule:"evenodd"})]}),Y=W;var $=({title:o,titleId:l,...e})=>jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:e.size||"1em",height:e.size||"1em",fill:"none",viewBox:"0 0 12 12","aria-labelledby":l,...e,children:[o?jsx("title",{id:l,children:o}):null,jsx("path",{fill:"currentColor",fillRule:"evenodd",d:"M10.243 1.757a.75.75 0 0 1 0 1.061L7.061 6l3.182 3.182a.75.75 0 0 1-1.06 1.06L6 7.062l-3.182 3.182a.75.75 0 1 1-1.06-1.061L4.94 6 1.758 2.818a.75.75 0 1 1 1.06-1.06L6 4.938l3.182-3.182a.75.75 0 0 1 1.061 0",clipRule:"evenodd"})]}),j=$;
|
|
64
4
|
|
|
65
|
-
|
|
66
|
-
import { jsx as jsx3, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
67
|
-
var SvgCheckmarkIcon = ({
|
|
68
|
-
title,
|
|
69
|
-
titleId,
|
|
70
|
-
...props
|
|
71
|
-
}) => /* @__PURE__ */ jsxs3(
|
|
72
|
-
"svg",
|
|
73
|
-
{
|
|
74
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
75
|
-
width: props.size || "1em",
|
|
76
|
-
height: props.size || "1em",
|
|
77
|
-
fill: "none",
|
|
78
|
-
viewBox: "0 0 12 12",
|
|
79
|
-
"aria-labelledby": titleId,
|
|
80
|
-
...props,
|
|
81
|
-
children: [
|
|
82
|
-
title ? /* @__PURE__ */ jsx3("title", { id: titleId, children: title }) : null,
|
|
83
|
-
/* @__PURE__ */ jsx3("g", { clipPath: "url(#checkmark-icon_svg__a)", children: /* @__PURE__ */ jsx3(
|
|
84
|
-
"path",
|
|
85
|
-
{
|
|
86
|
-
fill: "currentColor",
|
|
87
|
-
fillRule: "evenodd",
|
|
88
|
-
d: "M11.03 2.845a.75.75 0 0 1 0 1.06l-6.53 6.53-3.53-3.53a.75.75 0 0 1 1.06-1.06l2.47 2.47 5.47-5.47a.75.75 0 0 1 1.06 0",
|
|
89
|
-
clipRule: "evenodd"
|
|
90
|
-
}
|
|
91
|
-
) }),
|
|
92
|
-
/* @__PURE__ */ jsx3("defs", { children: /* @__PURE__ */ jsx3("clipPath", { id: "checkmark-icon_svg__a", children: /* @__PURE__ */ jsx3("path", { fill: "#fff", d: "M0 0h12v12H0z" }) }) })
|
|
93
|
-
]
|
|
94
|
-
}
|
|
95
|
-
);
|
|
96
|
-
var CheckmarkIcon_default = SvgCheckmarkIcon;
|
|
97
|
-
|
|
98
|
-
// src/12/EllipseIcon.tsx
|
|
99
|
-
import { jsx as jsx4, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
100
|
-
var SvgEllipseIcon = ({
|
|
101
|
-
title,
|
|
102
|
-
titleId,
|
|
103
|
-
...props
|
|
104
|
-
}) => /* @__PURE__ */ jsxs4(
|
|
105
|
-
"svg",
|
|
106
|
-
{
|
|
107
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
108
|
-
width: props.size || "1em",
|
|
109
|
-
height: props.size || "1em",
|
|
110
|
-
fill: "none",
|
|
111
|
-
viewBox: "0 0 12 12",
|
|
112
|
-
"aria-labelledby": titleId,
|
|
113
|
-
...props,
|
|
114
|
-
children: [
|
|
115
|
-
title ? /* @__PURE__ */ jsx4("title", { id: titleId, children: title }) : null,
|
|
116
|
-
/* @__PURE__ */ jsx4(
|
|
117
|
-
"path",
|
|
118
|
-
{
|
|
119
|
-
fill: "currentColor",
|
|
120
|
-
fillRule: "evenodd",
|
|
121
|
-
d: "M6 10.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9M6 12A6 6 0 1 0 6 0a6 6 0 0 0 0 12",
|
|
122
|
-
clipRule: "evenodd"
|
|
123
|
-
}
|
|
124
|
-
)
|
|
125
|
-
]
|
|
126
|
-
}
|
|
127
|
-
);
|
|
128
|
-
var EllipseIcon_default = SvgEllipseIcon;
|
|
129
|
-
|
|
130
|
-
// src/12/MinusIcon.tsx
|
|
131
|
-
import { jsx as jsx5, jsxs as jsxs5 } from "react/jsx-runtime";
|
|
132
|
-
var SvgMinusIcon = ({
|
|
133
|
-
title,
|
|
134
|
-
titleId,
|
|
135
|
-
...props
|
|
136
|
-
}) => /* @__PURE__ */ jsxs5(
|
|
137
|
-
"svg",
|
|
138
|
-
{
|
|
139
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
140
|
-
width: props.size || "1em",
|
|
141
|
-
height: props.size || "1em",
|
|
142
|
-
fill: "none",
|
|
143
|
-
viewBox: "0 0 12 12",
|
|
144
|
-
"aria-labelledby": titleId,
|
|
145
|
-
...props,
|
|
146
|
-
children: [
|
|
147
|
-
title ? /* @__PURE__ */ jsx5("title", { id: titleId, children: title }) : null,
|
|
148
|
-
/* @__PURE__ */ jsx5(
|
|
149
|
-
"path",
|
|
150
|
-
{
|
|
151
|
-
fill: "currentColor",
|
|
152
|
-
fillRule: "evenodd",
|
|
153
|
-
d: "M11.75 6a.75.75 0 0 1-.75.75H1a.75.75 0 0 1 0-1.5h10a.75.75 0 0 1 .75.75",
|
|
154
|
-
clipRule: "evenodd"
|
|
155
|
-
}
|
|
156
|
-
)
|
|
157
|
-
]
|
|
158
|
-
}
|
|
159
|
-
);
|
|
160
|
-
var MinusIcon_default = SvgMinusIcon;
|
|
161
|
-
|
|
162
|
-
// src/12/XIcon.tsx
|
|
163
|
-
import { jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
|
|
164
|
-
var SvgXIcon = ({
|
|
165
|
-
title,
|
|
166
|
-
titleId,
|
|
167
|
-
...props
|
|
168
|
-
}) => /* @__PURE__ */ jsxs6(
|
|
169
|
-
"svg",
|
|
170
|
-
{
|
|
171
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
172
|
-
width: props.size || "1em",
|
|
173
|
-
height: props.size || "1em",
|
|
174
|
-
fill: "none",
|
|
175
|
-
viewBox: "0 0 12 12",
|
|
176
|
-
"aria-labelledby": titleId,
|
|
177
|
-
...props,
|
|
178
|
-
children: [
|
|
179
|
-
title ? /* @__PURE__ */ jsx6("title", { id: titleId, children: title }) : null,
|
|
180
|
-
/* @__PURE__ */ jsx6(
|
|
181
|
-
"path",
|
|
182
|
-
{
|
|
183
|
-
fill: "currentColor",
|
|
184
|
-
fillRule: "evenodd",
|
|
185
|
-
d: "M10.243 1.757a.75.75 0 0 1 0 1.061L7.061 6l3.182 3.182a.75.75 0 0 1-1.06 1.06L6 7.062l-3.182 3.182a.75.75 0 1 1-1.06-1.061L4.94 6 1.758 2.818a.75.75 0 1 1 1.06-1.06L6 4.938l3.182-3.182a.75.75 0 0 1 1.061 0",
|
|
186
|
-
clipRule: "evenodd"
|
|
187
|
-
}
|
|
188
|
-
)
|
|
189
|
-
]
|
|
190
|
-
}
|
|
191
|
-
);
|
|
192
|
-
var XIcon_default = SvgXIcon;
|
|
193
|
-
export {
|
|
194
|
-
CaretLeftIcon_default as CaretLeftIcon,
|
|
195
|
-
CaretRightIcon_default as CaretRightIcon,
|
|
196
|
-
CheckmarkIcon_default as CheckmarkIcon,
|
|
197
|
-
EllipseIcon_default as EllipseIcon,
|
|
198
|
-
MinusIcon_default as MinusIcon,
|
|
199
|
-
XIcon_default as XIcon
|
|
200
|
-
};
|
|
5
|
+
export { g as CaretDownIcon, G as CaretLeftIcon, P as CaretRightIcon, z as CaretUpIcon, C as CheckmarkIcon, L as EllipseIcon, k as LockFilledIcon, D as LockIcon, X as MinusIcon, K as MoreIcon, Q as PlaceholderIcon, Y as PlusIcon, j as XIcon };
|