@dynatrace/strato-icons 0.33.0 → 0.34.0
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/index.cjs.js +882 -777
- package/index.esm.js +882 -777
- package/index.esm.js.map +4 -4
- package/package.json +1 -1
- package/src/__icons/AcceptIcon.d.ts +1 -1
- package/src/__icons/AirplaneFilledIcon.d.ts +20 -0
- package/src/__icons/AirplaneIcon.d.ts +17 -0
- package/src/__icons/CriticalFailedIcon.d.ts +17 -0
- package/src/__icons/CriticalIcon.d.ts +17 -0
- package/src/__icons/DavisCoPilotSignetIcon.d.ts +17 -0
- package/src/__icons/DeclineIcon.d.ts +1 -1
- package/src/__icons/DynatraceIcon.d.ts +17 -0
- package/src/__icons/DynatraceSignetIcon.d.ts +17 -0
- package/src/__icons/ErrorIcon.d.ts +3 -0
- package/src/__icons/LocationMarkerFilledIcon.d.ts +20 -0
- package/src/__icons/LocationMarkerIcon.d.ts +17 -0
- package/src/__icons/ResourceContentionIcon.d.ts +17 -0
- package/src/__icons/SecurityResolvedIcon.d.ts +17 -0
- package/src/__icons/SuccessIcon.d.ts +20 -0
- package/src/__icons/UnavailableIcon.d.ts +17 -0
- package/src/__icons/WarningFailedIcon.d.ts +17 -0
- package/src/__icons/ZoomToFitIcon.d.ts +17 -0
- package/src/index.d.ts +15 -0
package/package.json
CHANGED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
/**
|
|
18
|
+
* Usage only for world map
|
|
19
|
+
*/
|
|
20
|
+
export declare const AirplaneFilledIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const AirplaneIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const CriticalFailedIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const CriticalIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const DavisCoPilotSignetIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const DynatraceIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const DynatraceSignetIcon: SvgIconType;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
/**
|
|
18
|
+
* Usage only for world map
|
|
19
|
+
*/
|
|
20
|
+
export declare const LocationMarkerFilledIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const LocationMarkerIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const ResourceContentionIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const SecurityResolvedIcon: SvgIconType;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
/**
|
|
18
|
+
* Opposite of Decline
|
|
19
|
+
*/
|
|
20
|
+
export declare const SuccessIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const UnavailableIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const WarningFailedIcon: SvgIconType;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { SvgIconType } from '../lib/types';
|
|
17
|
+
export declare const ZoomToFitIcon: SvgIconType;
|
package/src/index.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ export { AcceptIcon } from './__icons/AcceptIcon';
|
|
|
19
19
|
export { AccountIcon } from './__icons/AccountIcon';
|
|
20
20
|
export { ActionIcon } from './__icons/ActionIcon';
|
|
21
21
|
export { ActionTriggerIcon } from './__icons/ActionTriggerIcon';
|
|
22
|
+
export { AirplaneFilledIcon } from './__icons/AirplaneFilledIcon';
|
|
23
|
+
export { AirplaneIcon } from './__icons/AirplaneIcon';
|
|
22
24
|
export { AnalyticsIcon } from './__icons/AnalyticsIcon';
|
|
23
25
|
export { AppEngineIcon } from './__icons/AppEngineIcon';
|
|
24
26
|
export { AppEngineSignetIcon } from './__icons/AppEngineSignetIcon';
|
|
@@ -91,6 +93,8 @@ export { CodeblockIcon } from './__icons/CodeblockIcon';
|
|
|
91
93
|
export { CollapseIcon } from './__icons/CollapseIcon';
|
|
92
94
|
export { ConditionsIcon } from './__icons/ConditionsIcon';
|
|
93
95
|
export { CopyIcon } from './__icons/CopyIcon';
|
|
96
|
+
export { CriticalFailedIcon } from './__icons/CriticalFailedIcon';
|
|
97
|
+
export { CriticalIcon } from './__icons/CriticalIcon';
|
|
94
98
|
export { CrosshairIcon } from './__icons/CrosshairIcon';
|
|
95
99
|
export { CursorIcon } from './__icons/CursorIcon';
|
|
96
100
|
export { CycleIcon } from './__icons/CycleIcon';
|
|
@@ -100,6 +104,7 @@ export { DatabaseIcon } from './__icons/DatabaseIcon';
|
|
|
100
104
|
export { DavisAiIcon } from './__icons/DavisAiIcon';
|
|
101
105
|
export { DavisAiSignetIcon } from './__icons/DavisAiSignetIcon';
|
|
102
106
|
export { DavisCoPilotIcon } from './__icons/DavisCoPilotIcon';
|
|
107
|
+
export { DavisCoPilotSignetIcon } from './__icons/DavisCoPilotSignetIcon';
|
|
103
108
|
export { DeclineIcon } from './__icons/DeclineIcon';
|
|
104
109
|
export { DeleteIcon } from './__icons/DeleteIcon';
|
|
105
110
|
export { DescriptionIcon } from './__icons/DescriptionIcon';
|
|
@@ -111,6 +116,8 @@ export { DragAllDirectionIcon } from './__icons/DragAllDirectionIcon';
|
|
|
111
116
|
export { DragHandleIcon } from './__icons/DragHandleIcon';
|
|
112
117
|
export { DragVerticalIcon } from './__icons/DragVerticalIcon';
|
|
113
118
|
export { DuplicateIcon } from './__icons/DuplicateIcon';
|
|
119
|
+
export { DynatraceIcon } from './__icons/DynatraceIcon';
|
|
120
|
+
export { DynatraceSignetIcon } from './__icons/DynatraceSignetIcon';
|
|
114
121
|
export { EditIcon } from './__icons/EditIcon';
|
|
115
122
|
export { EducationIcon } from './__icons/EducationIcon';
|
|
116
123
|
export { EnterIcon } from './__icons/EnterIcon';
|
|
@@ -162,6 +169,8 @@ export { LightmodeIcon } from './__icons/LightmodeIcon';
|
|
|
162
169
|
export { LineChartIcon } from './__icons/LineChartIcon';
|
|
163
170
|
export { LinkIcon } from './__icons/LinkIcon';
|
|
164
171
|
export { ListIcon } from './__icons/ListIcon';
|
|
172
|
+
export { LocationMarkerFilledIcon } from './__icons/LocationMarkerFilledIcon';
|
|
173
|
+
export { LocationMarkerIcon } from './__icons/LocationMarkerIcon';
|
|
165
174
|
export { LockIcon } from './__icons/LockIcon';
|
|
166
175
|
export { LoginIcon } from './__icons/LoginIcon';
|
|
167
176
|
export { LogoutIcon } from './__icons/LogoutIcon';
|
|
@@ -209,12 +218,14 @@ export { RequestIcon } from './__icons/RequestIcon';
|
|
|
209
218
|
export { ResearchIcon } from './__icons/ResearchIcon';
|
|
210
219
|
export { ResetIcon } from './__icons/ResetIcon';
|
|
211
220
|
export { ResizeIcon } from './__icons/ResizeIcon';
|
|
221
|
+
export { ResourceContentionIcon } from './__icons/ResourceContentionIcon';
|
|
212
222
|
export { SaveIcon } from './__icons/SaveIcon';
|
|
213
223
|
export { ScatterplotIcon } from './__icons/ScatterplotIcon';
|
|
214
224
|
export { SecurityCriticalIcon } from './__icons/SecurityCriticalIcon';
|
|
215
225
|
export { SecurityHighIcon } from './__icons/SecurityHighIcon';
|
|
216
226
|
export { SecurityIcon } from './__icons/SecurityIcon';
|
|
217
227
|
export { SecurityMediumIcon } from './__icons/SecurityMediumIcon';
|
|
228
|
+
export { SecurityResolvedIcon } from './__icons/SecurityResolvedIcon';
|
|
218
229
|
export { SelectIcon } from './__icons/SelectIcon';
|
|
219
230
|
export { SelectIndicatorIcon } from './__icons/SelectIndicatorIcon';
|
|
220
231
|
export { SettingIcon } from './__icons/SettingIcon';
|
|
@@ -238,6 +249,7 @@ export { StopIcon } from './__icons/StopIcon';
|
|
|
238
249
|
export { StopwatchIcon } from './__icons/StopwatchIcon';
|
|
239
250
|
export { StorageIcon } from './__icons/StorageIcon';
|
|
240
251
|
export { StrikethroughSIcon } from './__icons/StrikethroughSIcon';
|
|
252
|
+
export { SuccessIcon } from './__icons/SuccessIcon';
|
|
241
253
|
export { SupportIcon } from './__icons/SupportIcon';
|
|
242
254
|
export { SyncDoneIcon } from './__icons/SyncDoneIcon';
|
|
243
255
|
export { SyncDownloadIcon } from './__icons/SyncDownloadIcon';
|
|
@@ -254,6 +266,7 @@ export { TitleIcon } from './__icons/TitleIcon';
|
|
|
254
266
|
export { TitleOffIcon } from './__icons/TitleOffIcon';
|
|
255
267
|
export { TrashIcon } from './__icons/TrashIcon';
|
|
256
268
|
export { TriggerIcon } from './__icons/TriggerIcon';
|
|
269
|
+
export { UnavailableIcon } from './__icons/UnavailableIcon';
|
|
257
270
|
export { UndoIcon } from './__icons/UndoIcon';
|
|
258
271
|
export { UnfavoriteIcon } from './__icons/UnfavoriteIcon';
|
|
259
272
|
export { UnfavouriteIcon } from './__icons/UnfavouriteIcon';
|
|
@@ -268,6 +281,7 @@ export { VolumeIcon } from './__icons/VolumeIcon';
|
|
|
268
281
|
export { VolumeOffIcon } from './__icons/VolumeOffIcon';
|
|
269
282
|
export { VulnerableFunctionIcon } from './__icons/VulnerableFunctionIcon';
|
|
270
283
|
export { VulnerableFunctionOffIcon } from './__icons/VulnerableFunctionOffIcon';
|
|
284
|
+
export { WarningFailedIcon } from './__icons/WarningFailedIcon';
|
|
271
285
|
export { WarningIcon } from './__icons/WarningIcon';
|
|
272
286
|
export { WhatsNewIcon } from './__icons/WhatsNewIcon';
|
|
273
287
|
export { WrapTextIcon } from './__icons/WrapTextIcon';
|
|
@@ -277,4 +291,5 @@ export { Zoom1DIcon } from './__icons/Zoom1DIcon';
|
|
|
277
291
|
export { ZoomHorizontalIcon } from './__icons/ZoomHorizontalIcon';
|
|
278
292
|
export { ZoomInIcon } from './__icons/ZoomInIcon';
|
|
279
293
|
export { ZoomOutIcon } from './__icons/ZoomOutIcon';
|
|
294
|
+
export { ZoomToFitIcon } from './__icons/ZoomToFitIcon';
|
|
280
295
|
export { ZoomVerticalIcon } from './__icons/ZoomVerticalIcon';
|