@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.
@@ -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
+ };