@baseline-ui/icons 0.5.0 → 0.5.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/License.md +5 -0
- package/dist/12/index.d.mts +47 -0
- package/dist/12/index.d.ts +47 -0
- package/dist/12/index.js +224 -0
- package/dist/12/index.mjs +169 -0
- package/dist/16/index.d.mts +138 -0
- package/dist/16/index.d.ts +138 -0
- package/dist/16/index.js +669 -0
- package/dist/16/index.mjs +562 -0
- package/dist/20/index.d.mts +96 -0
- package/dist/20/index.d.ts +96 -0
- package/dist/20/index.js +482 -0
- package/dist/20/index.mjs +399 -0
- package/dist/24/index.d.mts +110 -0
- package/dist/24/index.d.ts +110 -0
- package/dist/24/index.js +494 -0
- package/dist/24/index.mjs +403 -0
- package/dist/8/index.d.mts +54 -0
- package/dist/8/index.d.ts +54 -0
- package/dist/8/index.js +252 -0
- package/dist/8/index.mjs +193 -0
- package/dist/Icon.types-6dbe6c2c.d.ts +36 -0
- package/dist/icons.css +4 -0
- package/package.json +5 -4
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import { S as SVGRProps } from "../Icon.types-6dbe6c2c.js";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
declare const SvgAvatarIcon: ({
|
|
5
|
+
title,
|
|
6
|
+
titleId,
|
|
7
|
+
...props
|
|
8
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
9
|
+
|
|
10
|
+
declare const SvgCaretLeftIcon: ({
|
|
11
|
+
title,
|
|
12
|
+
titleId,
|
|
13
|
+
...props
|
|
14
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
15
|
+
|
|
16
|
+
declare const SvgCaretRightIcon: ({
|
|
17
|
+
title,
|
|
18
|
+
titleId,
|
|
19
|
+
...props
|
|
20
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
21
|
+
|
|
22
|
+
declare const SvgCheckFilledIcon: ({
|
|
23
|
+
title,
|
|
24
|
+
titleId,
|
|
25
|
+
...props
|
|
26
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
27
|
+
|
|
28
|
+
declare const SvgCheckmarkIcon: ({
|
|
29
|
+
title,
|
|
30
|
+
titleId,
|
|
31
|
+
...props
|
|
32
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
33
|
+
|
|
34
|
+
declare const SvgCloseIcon: ({
|
|
35
|
+
title,
|
|
36
|
+
titleId,
|
|
37
|
+
...props
|
|
38
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
39
|
+
|
|
40
|
+
declare const SvgEllipseIcon: ({
|
|
41
|
+
title,
|
|
42
|
+
titleId,
|
|
43
|
+
...props
|
|
44
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
45
|
+
|
|
46
|
+
declare const SvgErrorAltFilledIcon: ({
|
|
47
|
+
title,
|
|
48
|
+
titleId,
|
|
49
|
+
...props
|
|
50
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
51
|
+
|
|
52
|
+
declare const SvgErrorFilledIcon: ({
|
|
53
|
+
title,
|
|
54
|
+
titleId,
|
|
55
|
+
...props
|
|
56
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
57
|
+
|
|
58
|
+
declare const SvgInfoFilledIcon: ({
|
|
59
|
+
title,
|
|
60
|
+
titleId,
|
|
61
|
+
...props
|
|
62
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
63
|
+
|
|
64
|
+
declare const SvgMinusIcon: ({
|
|
65
|
+
title,
|
|
66
|
+
titleId,
|
|
67
|
+
...props
|
|
68
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
69
|
+
|
|
70
|
+
declare const SvgNoneIcon: ({
|
|
71
|
+
title,
|
|
72
|
+
titleId,
|
|
73
|
+
...props
|
|
74
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
75
|
+
|
|
76
|
+
declare const SvgPlusIcon: ({
|
|
77
|
+
title,
|
|
78
|
+
titleId,
|
|
79
|
+
...props
|
|
80
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
81
|
+
|
|
82
|
+
declare const SvgReadOnlyIcon: ({
|
|
83
|
+
title,
|
|
84
|
+
titleId,
|
|
85
|
+
...props
|
|
86
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
87
|
+
|
|
88
|
+
declare const SvgRedoIcon: ({
|
|
89
|
+
title,
|
|
90
|
+
titleId,
|
|
91
|
+
...props
|
|
92
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
93
|
+
|
|
94
|
+
declare const SvgTrashIcon: ({
|
|
95
|
+
title,
|
|
96
|
+
titleId,
|
|
97
|
+
...props
|
|
98
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
99
|
+
|
|
100
|
+
declare const SvgUndoIcon: ({
|
|
101
|
+
title,
|
|
102
|
+
titleId,
|
|
103
|
+
...props
|
|
104
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
105
|
+
|
|
106
|
+
declare const SvgWarningFilledIcon: ({
|
|
107
|
+
title,
|
|
108
|
+
titleId,
|
|
109
|
+
...props
|
|
110
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
111
|
+
|
|
112
|
+
declare const SvgXIcon: ({
|
|
113
|
+
title,
|
|
114
|
+
titleId,
|
|
115
|
+
...props
|
|
116
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => any;
|
|
117
|
+
|
|
118
|
+
export {
|
|
119
|
+
SvgAvatarIcon as AvatarIcon,
|
|
120
|
+
SvgCaretLeftIcon as CaretLeftIcon,
|
|
121
|
+
SvgCaretRightIcon as CaretRightIcon,
|
|
122
|
+
SvgCheckFilledIcon as CheckFilledIcon,
|
|
123
|
+
SvgCheckmarkIcon as CheckmarkIcon,
|
|
124
|
+
SvgCloseIcon as CloseIcon,
|
|
125
|
+
SvgEllipseIcon as EllipseIcon,
|
|
126
|
+
SvgErrorAltFilledIcon as ErrorAltFilledIcon,
|
|
127
|
+
SvgErrorFilledIcon as ErrorFilledIcon,
|
|
128
|
+
SvgInfoFilledIcon as InfoFilledIcon,
|
|
129
|
+
SvgMinusIcon as MinusIcon,
|
|
130
|
+
SvgNoneIcon as NoneIcon,
|
|
131
|
+
SvgPlusIcon as PlusIcon,
|
|
132
|
+
SvgReadOnlyIcon as ReadOnlyIcon,
|
|
133
|
+
SvgRedoIcon as RedoIcon,
|
|
134
|
+
SvgTrashIcon as TrashIcon,
|
|
135
|
+
SvgUndoIcon as UndoIcon,
|
|
136
|
+
SvgWarningFilledIcon as WarningFilledIcon,
|
|
137
|
+
SvgXIcon as XIcon,
|
|
138
|
+
};
|