@entur/icons 3.1.0 → 3.4.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/CHANGELOG.md +30 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.esm.js +240 -12
- package/dist/index.esm.native.js +221 -13
- package/dist/index.js +249 -11
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.4.1](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.4.0...@entur/icons@3.4.1) (2022-02-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @entur/icons
|
|
9
|
+
|
|
10
|
+
# [3.4.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.3.0...@entur/icons@3.4.0) (2021-11-17)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- add correspondence icon ([ee07d31](https://bitbucket.org/enturas/design-system/commits/ee07d31857ccfe0ce57be30556a2a8377bc8eb53))
|
|
15
|
+
- add ZoneIcon ([e52f648](https://bitbucket.org/enturas/design-system/commits/e52f64831b3b3a311cb85b12bce5d01b794a75b5))
|
|
16
|
+
|
|
17
|
+
# [3.3.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.2.0...@entur/icons@3.3.0) (2021-09-23)
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- **switch:** fix switchicon color bug ([e41f8a9](https://bitbucket.org/enturas/design-system/commits/e41f8a9721a648c2a49e674cbf8b65b1329e7558))
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
- add couchette icon ([7c6c6a3](https://bitbucket.org/enturas/design-system/commits/7c6c6a3ba5712b9f7546c9d20cc9451e1a0372fc))
|
|
26
|
+
- add WaterTapIcon ([80d9439](https://bitbucket.org/enturas/design-system/commits/80d9439b0f6f759f42f2c99a2e0fc8812ba81cd7))
|
|
27
|
+
- add ZvippIcon (mobility partner) ([9e9374c](https://bitbucket.org/enturas/design-system/commits/9e9374c22b806ab549430ff3ee9b123cb6a4210c))
|
|
28
|
+
|
|
29
|
+
# [3.2.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.1.0...@entur/icons@3.2.0) (2021-09-13)
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
- add CloseSmallIcon ([c606324](https://bitbucket.org/enturas/design-system/commits/c606324e3800fa99605c6ff818bd4120adf3e89e))
|
|
34
|
+
- add outlined validation icons ([403622c](https://bitbucket.org/enturas/design-system/commits/403622c9750e955b8bb8140e75266df6b9c8e973))
|
|
35
|
+
|
|
6
36
|
# [3.1.0](https://bitbucket.org/enturas/design-system/compare/@entur/icons@3.0.0...@entur/icons@3.1.0) (2021-09-07)
|
|
7
37
|
|
|
8
38
|
### Features
|
package/dist/index.d.ts
CHANGED
|
@@ -52,6 +52,7 @@ export declare const BicycleHotelIcon: React.FC<IconProps>;
|
|
|
52
52
|
export declare const BicycleParkingIcon: React.FC<IconProps>;
|
|
53
53
|
export declare const BusShelterIcon: React.FC<IconProps>;
|
|
54
54
|
export declare const CoffeeIcon: React.FC<IconProps>;
|
|
55
|
+
export declare const CouchetteIcon: React.FC<IconProps>;
|
|
55
56
|
export declare const CutleryIcon: React.FC<IconProps>;
|
|
56
57
|
export declare const LockerIcon: React.FC<IconProps>;
|
|
57
58
|
export declare const ParkIcon: React.FC<IconProps>;
|
|
@@ -68,6 +69,7 @@ export declare const ToiletIcon: React.FC<IconProps>;
|
|
|
68
69
|
export declare const TrainCarIcon: React.FC<IconProps>;
|
|
69
70
|
export declare const VendingMachineIcon: React.FC<IconProps>;
|
|
70
71
|
export declare const WaitingRoomIcon: React.FC<IconProps>;
|
|
72
|
+
export declare const WaterTapIcon: React.FC<IconProps>;
|
|
71
73
|
export declare const WheelchairIcon: React.FC<IconProps>;
|
|
72
74
|
export declare const WifiIcon: React.FC<IconProps>;
|
|
73
75
|
export declare const DenmarkIcon: React.FC<IconProps>;
|
|
@@ -94,6 +96,7 @@ export declare const TrondheimBysykkelIcon: React.FC<IconProps>;
|
|
|
94
96
|
export declare const VKTIcon: React.FC<IconProps>;
|
|
95
97
|
export declare const VoiIcon: React.FC<IconProps>;
|
|
96
98
|
export declare const VyIcon: React.FC<IconProps>;
|
|
99
|
+
export declare const ZvippIcon: React.FC<IconProps>;
|
|
97
100
|
export declare const BanknoteIcon: React.FC<IconProps>;
|
|
98
101
|
export declare const BanknoteMultiIcon: React.FC<IconProps>;
|
|
99
102
|
export declare const DepositionIcon: React.FC<IconProps>;
|
|
@@ -165,6 +168,7 @@ export declare const TramIcon: React.FC<IconProps>;
|
|
|
165
168
|
export declare const WalkingIcon: React.FC<IconProps>;
|
|
166
169
|
export declare const AdditionalZonesTicketIcon: React.FC<IconProps>;
|
|
167
170
|
export declare const CityIcon: React.FC<IconProps>;
|
|
171
|
+
export declare const CorrespondenceIcon: React.FC<IconProps>;
|
|
168
172
|
export declare const DestinationIcon: React.FC<IconProps>;
|
|
169
173
|
export declare const EnvironmentIcon: React.FC<IconProps>;
|
|
170
174
|
export declare const GoalIcon: React.FC<IconProps>;
|
|
@@ -182,6 +186,7 @@ export declare const SkiIcon: React.FC<IconProps>;
|
|
|
182
186
|
export declare const SuitcaseIcon: React.FC<IconProps>;
|
|
183
187
|
export declare const TrackIcon: React.FC<IconProps>;
|
|
184
188
|
export declare const ValidTicketIcon: React.FC<IconProps>;
|
|
189
|
+
export declare const ZoneIcon: React.FC<IconProps>;
|
|
185
190
|
export declare const AccessibilityIcon: React.FC<IconProps>;
|
|
186
191
|
export declare const AddCardIcon: React.FC<IconProps>;
|
|
187
192
|
export declare const AddIcon: React.FC<IconProps>;
|
|
@@ -200,6 +205,7 @@ export declare const ChatIcon: React.FC<IconProps>;
|
|
|
200
205
|
export declare const CheckIcon: React.FC<IconProps>;
|
|
201
206
|
export declare const ClockIcon: React.FC<IconProps>;
|
|
202
207
|
export declare const CloseIcon: React.FC<IconProps>;
|
|
208
|
+
export declare const CloseSmallIcon: React.FC<IconProps>;
|
|
203
209
|
export declare const ColorPickerIcon: React.FC<IconProps>;
|
|
204
210
|
export declare const CommentIcon: React.FC<IconProps>;
|
|
205
211
|
export declare const ConfigurationIcon: React.FC<IconProps>;
|
|
@@ -251,6 +257,10 @@ export declare const TimelineIcon: React.FC<IconProps>;
|
|
|
251
257
|
export declare const UnviewIcon: React.FC<IconProps>;
|
|
252
258
|
export declare const UserIcon: React.FC<IconProps>;
|
|
253
259
|
export declare const UsersIcon: React.FC<IconProps>;
|
|
260
|
+
export declare const OutlinedValidationCheckIcon: React.FC<IconProps>;
|
|
261
|
+
export declare const OutlinedValidationErrorIcon: React.FC<IconProps>;
|
|
262
|
+
export declare const OutlinedValidationExclamationIcon: React.FC<IconProps>;
|
|
263
|
+
export declare const OutlinedValidationInfoIcon: React.FC<IconProps>;
|
|
254
264
|
export declare const ValidationCheckIcon: React.FC<IconProps>;
|
|
255
265
|
export declare const ValidationErrorIcon: React.FC<IconProps>;
|
|
256
266
|
export declare const ValidationExclamationIcon: React.FC<IconProps>;
|
package/dist/index.esm.js
CHANGED
|
@@ -295,24 +295,21 @@ function ShareIcon(props) {
|
|
|
295
295
|
|
|
296
296
|
function SwitchIcon(props) {
|
|
297
297
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
298
|
-
id: "Layer_1",
|
|
299
|
-
x: 0,
|
|
300
|
-
y: 0,
|
|
301
298
|
viewBox: "0 0 16 16",
|
|
302
|
-
xmlSpace: "preserve",
|
|
303
299
|
width: props.width || props.size || '1em',
|
|
304
300
|
height: props.height || props.size || '1em',
|
|
305
301
|
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
306
302
|
inline: undefined,
|
|
307
303
|
color: props.color || 'currentColor'
|
|
304
|
+
}), /*#__PURE__*/createElement("g", {
|
|
305
|
+
fill: "currentColor",
|
|
306
|
+
fillRule: "evenodd",
|
|
307
|
+
clipRule: "evenodd"
|
|
308
|
+
}, /*#__PURE__*/createElement("path", {
|
|
309
|
+
d: "M12.321 14.2l-.899-.9 1.5-1.5h-8.6v-1.3h8.6l-1.5-1.5.9-.9 2.5 2.5c.2.2.2.6.1.8l-.1.1-2.5 2.7z"
|
|
308
310
|
}), /*#__PURE__*/createElement("path", {
|
|
309
|
-
d: "
|
|
310
|
-
|
|
311
|
-
}), /*#__PURE__*/createElement("path", {
|
|
312
|
-
id: "Icon-Fill",
|
|
313
|
-
d: "M3.7 1.8l.9.9-1.4 1.5h8.6v1.3H3.2L4.7 7l-1 .8-2.5-2.6c-.2-.2-.3-.5-.1-.8l.1-.1 2.5-2.5z",
|
|
314
|
-
className: "st0"
|
|
315
|
-
}));
|
|
311
|
+
d: "M3.722 1.8l.9.9-1.4 1.5h8.6v1.3h-8.6l1.5 1.5-1 .8-2.5-2.6c-.2-.2-.3-.5-.1-.8l.1-.1 2.5-2.5z"
|
|
312
|
+
})));
|
|
316
313
|
}
|
|
317
314
|
|
|
318
315
|
function ToFromIcon(props) {
|
|
@@ -573,6 +570,22 @@ function CoffeeIcon(props) {
|
|
|
573
570
|
}));
|
|
574
571
|
}
|
|
575
572
|
|
|
573
|
+
function CouchetteIcon(props) {
|
|
574
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
575
|
+
viewBox: "0 0 16 16",
|
|
576
|
+
width: props.width || props.size || '1em',
|
|
577
|
+
height: props.height || props.size || '1em',
|
|
578
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
579
|
+
inline: undefined,
|
|
580
|
+
color: props.color || 'currentColor'
|
|
581
|
+
}), /*#__PURE__*/createElement("path", {
|
|
582
|
+
fill: "currentColor",
|
|
583
|
+
fillRule: "evenodd",
|
|
584
|
+
d: "M14.897 7.756a.632.632 0 00-.626-.547h-.09V4.248a.685.685 0 00-.684-.685h-3.374a.798.798 0 00-.382.107 1.09 1.09 0 00-.46-.107H6.622c-.166 0-.32.042-.462.107a.799.799 0 00-.383-.107H2.406a.686.686 0 00-.685.685v2.961h-.089a.632.632 0 00-.626.547L1 7.84v4.596h1.264v-1.666H13.639v1.666h1.265V7.841l-.006-.085zM13.096 4.65v2.56H10.39V4.65h2.706zm-3.792.023V7.21H6.603l.02-2.56 2.68.024zM2.808 4.65h2.704v2.559H2.807V4.65zm10.83 4.857H2.265l-.001-1.034h11.375l-.001 1.034z",
|
|
585
|
+
clipRule: "evenodd"
|
|
586
|
+
}));
|
|
587
|
+
}
|
|
588
|
+
|
|
576
589
|
function CutleryIcon(props) {
|
|
577
590
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
578
591
|
viewBox: "0 0 16 16",
|
|
@@ -827,6 +840,27 @@ function WaitingRoomIcon(props) {
|
|
|
827
840
|
}));
|
|
828
841
|
}
|
|
829
842
|
|
|
843
|
+
function WaterTapIcon(props) {
|
|
844
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
845
|
+
viewBox: "0 0 16 16",
|
|
846
|
+
width: props.width || props.size || '1em',
|
|
847
|
+
height: props.height || props.size || '1em',
|
|
848
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
849
|
+
inline: undefined,
|
|
850
|
+
color: props.color || 'currentColor'
|
|
851
|
+
}), /*#__PURE__*/createElement("path", {
|
|
852
|
+
fill: "currentColor",
|
|
853
|
+
fillRule: "evenodd",
|
|
854
|
+
d: "M6.739 1h5.512v1.315H6.74V1z",
|
|
855
|
+
clipRule: "evenodd"
|
|
856
|
+
}), /*#__PURE__*/createElement("path", {
|
|
857
|
+
fill: "currentColor",
|
|
858
|
+
fillRule: "evenodd",
|
|
859
|
+
d: "M8.844 4.246h-2.45c-1.83 0-3.242 1.578-3.242 3.434H4.46c0-1.21.905-2.119 1.934-2.119H14.4V4.246h-4.248V2.128H8.844v2.118zM4.291 9.459l-.485.442-.484-.442a.652.652 0 01.969 0zm-.485 1.479a9.529 9.529 0 00-.239.33 5.89 5.89 0 00-.48.81c-.13.278-.179.479-.179.599 0 .674.466 1.008.898 1.008s.899-.334.899-1.008c0-.12-.05-.321-.18-.598a5.89 5.89 0 00-.48-.81 9.529 9.529 0 00-.239-.331zm0-1.037l-.484-.442-.002.002-.005.005-.015.017a7.37 7.37 0 00-.241.285c-.153.187-.359.45-.566.75a7.191 7.191 0 00-.588.999c-.16.342-.305.752-.305 1.16C1.6 14.112 2.687 15 3.806 15c1.12 0 2.207-.888 2.207-2.323 0-.408-.145-.818-.305-1.16a7.191 7.191 0 00-.588-1 11.711 11.711 0 00-.807-1.034l-.016-.017-.004-.005-.001-.001-.001-.001-.485.442z",
|
|
860
|
+
clipRule: "evenodd"
|
|
861
|
+
}));
|
|
862
|
+
}
|
|
863
|
+
|
|
830
864
|
function WheelchairIcon(props) {
|
|
831
865
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
832
866
|
viewBox: "0 0 16 16",
|
|
@@ -1588,6 +1622,38 @@ function VyIcon(props) {
|
|
|
1588
1622
|
}));
|
|
1589
1623
|
}
|
|
1590
1624
|
|
|
1625
|
+
function ZvippIcon(props) {
|
|
1626
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
1627
|
+
viewBox: "0 0 16 16",
|
|
1628
|
+
width: props.width || props.size || '1em',
|
|
1629
|
+
height: props.height || props.size || '1em',
|
|
1630
|
+
className: 'eds-icon__ZvippIcon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
1631
|
+
inline: undefined,
|
|
1632
|
+
color: props.color || 'currentColor'
|
|
1633
|
+
}), /*#__PURE__*/createElement("defs", null, /*#__PURE__*/createElement("path", {
|
|
1634
|
+
id: "a",
|
|
1635
|
+
d: "M14.783 5.275l-2.709-2.364H4.023L1 5.511l6.755 7.673z"
|
|
1636
|
+
})), /*#__PURE__*/createElement("clipPath", {
|
|
1637
|
+
id: "b"
|
|
1638
|
+
}, /*#__PURE__*/createElement("use", {
|
|
1639
|
+
overflow: "visible",
|
|
1640
|
+
xlinkHref: "#a"
|
|
1641
|
+
})), /*#__PURE__*/createElement("g", {
|
|
1642
|
+
fill: "#FFD600",
|
|
1643
|
+
clipPath: "url(#b)"
|
|
1644
|
+
}, /*#__PURE__*/createElement("path", {
|
|
1645
|
+
d: "M4.132 5.149l4.611 7.555.471-.457-4.315-6.601z"
|
|
1646
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1647
|
+
d: "M12.731 7.448L8.229 2.542l-2.31.004 2.536 3.097h-.432L5.476 2.54l-.746.004.524 3.099 4.165 6.337 1.142-1.623z"
|
|
1648
|
+
})), /*#__PURE__*/createElement("g", {
|
|
1649
|
+
fill: "#009D48"
|
|
1650
|
+
}, /*#__PURE__*/createElement("path", {
|
|
1651
|
+
d: "M4.601 5.646h.298l.355-.003h2.457L5.192 2.58H3.963L1 5.511l6.972 7.909.989-1.113z"
|
|
1652
|
+
}), /*#__PURE__*/createElement("path", {
|
|
1653
|
+
d: "M12.232 7.448H8.59l1.987 3.041L15 5.511 12.014 2.58H8.26z"
|
|
1654
|
+
})));
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1591
1657
|
function BanknoteIcon(props) {
|
|
1592
1658
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
1593
1659
|
viewBox: "0 0 16 16",
|
|
@@ -2812,6 +2878,32 @@ function CityIcon(props) {
|
|
|
2812
2878
|
}));
|
|
2813
2879
|
}
|
|
2814
2880
|
|
|
2881
|
+
function CorrespondenceIcon(props) {
|
|
2882
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
2883
|
+
viewBox: "0 0 16 16",
|
|
2884
|
+
width: props.width || props.size || '1em',
|
|
2885
|
+
height: props.height || props.size || '1em',
|
|
2886
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
2887
|
+
inline: undefined,
|
|
2888
|
+
color: props.color || 'currentColor'
|
|
2889
|
+
}), /*#__PURE__*/createElement("path", {
|
|
2890
|
+
fill: "currentColor",
|
|
2891
|
+
fillRule: "evenodd",
|
|
2892
|
+
d: "M5.943 2.5L5 3.443l4.291 4.29L5 12.023l.943.944 4.762-4.762a.667.667 0 00.07-.86l-.07-.083L5.943 2.5z",
|
|
2893
|
+
clipRule: "evenodd"
|
|
2894
|
+
}), /*#__PURE__*/createElement("path", {
|
|
2895
|
+
fill: "currentColor",
|
|
2896
|
+
fillRule: "evenodd",
|
|
2897
|
+
d: "M10.043 2.5l-.943.943 4.291 4.29-4.291 4.29.943.944 4.762-4.762a.667.667 0 00.07-.86l-.07-.083L10.043 2.5z",
|
|
2898
|
+
clipRule: "evenodd"
|
|
2899
|
+
}), /*#__PURE__*/createElement("path", {
|
|
2900
|
+
fill: "currentColor",
|
|
2901
|
+
fillRule: "evenodd",
|
|
2902
|
+
d: "M1.943 2.5L1 3.443l4.291 4.29L1 12.023l.943.944 4.762-4.762a.667.667 0 00.07-.86l-.07-.083L1.943 2.5z",
|
|
2903
|
+
clipRule: "evenodd"
|
|
2904
|
+
}));
|
|
2905
|
+
}
|
|
2906
|
+
|
|
2815
2907
|
function DestinationIcon(props) {
|
|
2816
2908
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
2817
2909
|
viewBox: "0 0 12 14",
|
|
@@ -3081,6 +3173,45 @@ function ValidTicketIcon(props) {
|
|
|
3081
3173
|
}));
|
|
3082
3174
|
}
|
|
3083
3175
|
|
|
3176
|
+
function ZoneIcon(props) {
|
|
3177
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
3178
|
+
viewBox: "0 0 16 16",
|
|
3179
|
+
width: props.width || props.size || '1em',
|
|
3180
|
+
height: props.height || props.size || '1em',
|
|
3181
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
3182
|
+
inline: undefined,
|
|
3183
|
+
color: props.color || 'currentColor'
|
|
3184
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3185
|
+
fill: "currentColor",
|
|
3186
|
+
d: "M3.226 6.335c-.174.114-.34.235-.496.361a6.113 6.113 0 00-.062.05v.001l-.005.004-.01.008a5.595 5.595 0 00-.009.008l-.004.003a5.165 5.165 0 00-.01.008l-.004.004-.005.004-.005.004-.004.004-.005.004-.004.004h-.001l-.009.008-.004.004h-.001l-.004.004-.004.004h-.002c0 .002-.002.003-.003.004l-.005.004-.004.004h-.001a1.762 1.762 0 01-.004.004l-.005.004-.004.003-.001.002c-.002 0-.003.002-.004.003l-.004.004H2.54a.173.173 0 00-.004.004l-.004.004-.001.001-.003.003h-.001l-.003.003-.001.001-.004.004-.002.001-.002.002-.002.002-.003.003-.002.001-.002.003-.002.001-.003.002-.001.002c-.002 0-.003.002-.004.003l-.002.002-.002.002-.002.001-.002.003-.002.001-.003.003a.423.423 0 00-.004.004l-.002.001-.002.002-.003.003-.003.002a.451.451 0 00-.004.004l-.001.001-.004.003-.002.002-.002.002-.002.002a.3.3 0 00-.006.006l-.003.003h-.002c0 .002-.001.002-.002.003l-.001.001-.005.004-.001.001-.003.003a5.414 5.414 0 00-.01.009l-.003.003-.006.006-.003.003h-.001l-.003.003-.006.006-.003.003-.01.009-.003.003a5.725 5.725 0 00-.02.018l-.002.003h-.001l-.009.01-.003.002a4.668 4.668 0 00-1.084 1.536l1.203.51c.26-.615.771-1.186 1.477-1.652l-.72-1.09z"
|
|
3187
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3188
|
+
fill: "currentColor",
|
|
3189
|
+
d: "M2.293 10.352L1 10.535a3.665 3.665 0 00.054.294l.006.027.003.012.004.016.002.011.003.012.003.011.001.004.003.012.003.011.003.012.001.004.003.011a5.234 5.234 0 00.006.023l.001.004.002.008.002.003v.001a4.794 4.794 0 00.006.022v.001l.001.003v.001l.002.007.001.004.004.011v.001l.003.01v.001l.001.004.003.007v.004h.001l.003.011v.001l.004.01v.005h.001a2.172 2.172 0 00.002.008l.001.003v.001l.004.01v.001l.004.01v.005h.001l.002.007.002.004a1.444 1.444 0 01.003.011v.001l.004.01v.001l.001.004.004.011.004.011v.001l.004.01v.001l.001.004.003.007v.004h.001a4.825 4.825 0 00.004.012l.004.01v.001l.001.003v.001l.003.007.001.003v.002l.004.01.002.004.002.007.002.004v.001l.002.006.002.004v.001l.004.01v.001l.004.01v.001l.002.003v.002l.003.006.001.004.004.01v.002l.002.003c0 .003.002.005.003.007l.001.004a.076.076 0 00.003.007l.001.004.001.001.004.01v.001l.002.003.002.007v.001l.002.003v.001a1.922 1.922 0 00.003.007l.001.003v.001l.005.01v.001l.002.003v.001l.002.006v.001l.002.003v.002l.003.005v.001l.002.003v.001a4.3 4.3 0 00.005.011l.001.003.003.007v.001l.002.003v.002l.003.005v.001l.001.003v.002l.005.009v.002l.002.002v.002l.003.005v.001l.002.003v.001l.002.006.001.001.001.003a.115.115 0 00.005.01v.002l.002.003.003.007v.001l.002.003v.001l.003.006.002.004v.001l.005.01.002.004.003.006a.106.106 0 00.002.005l.003.006v.002l.002.002v.002l.005.01.005.01v.001l.002.003v.002l.003.005v.001l.002.003v.001l.005.01a.132.132 0 01.002.004l.003.006v.002l.002.003.003.006.001.001.001.003.001.002.005.009v.001l.002.003c0 .003.002.005.003.007v.001l.002.003v.001l.003.005v.002l.002.002.001.002.003.006.002.003v.002l.002.002v.001l.003.006v.001l.002.003v.001l.004.005v.002a.462.462 0 01.002.004l.003.006.002.003v.002l.006.009v.001l.002.003v.001l.003.006.002.004h.001l.003.007.002.003v.002l.002.002v.001l.004.006v.001l.002.003v.001l.003.005.001.002.001.003h.001l.003.007.002.003a.145.145 0 01.007.012.534.534 0 00.005.009v.001l.002.003v.002l.006.009v.001l.006.01c0 .002.001.002.002.003v.001l.004.006v.001l.002.003v.001l.006.01.006.01v.001l.002.003v.001l.004.006.002.003v.001l.006.01v.001l.006.01.002.003.001.001.003.006a.484.484 0 00.003.005l.003.005.001.001.001.003.002.002.001.002a.193.193 0 00.004.006v.002a.544.544 0 00.003.004l.003.005v.001l.002.003.001.001.004.006.002.003v.001l.006.01.002.004h.001l.003.006.001.001.002.003v.001l.006.01c.003.003.005.007.006.01h.001a.541.541 0 00.006.01l.003.004.006.01v.001l.006.01h.001c0 .002.001.002.002.003v.001l.004.006.002.004h.001l.006.01v.001l.007.01.002.003.004.007.003.003v.001l.007.01a4.58 4.58 0 00.007.01l.002.004.004.006.003.004.006.01a2.872 2.872 0 00.008.011l.002.003.004.007.003.003v.001l.007.01.007.01.007.01.002.004.007.01a5.196 5.196 0 00.01.014l.004.006.003.004.007.01a2.931 2.931 0 00.008.01l.006.01a.043.043 0 01.003.003v.001l.007.01.008.01a.775.775 0 01.002.003l.005.007.003.003.007.01.007.01a4.832 4.832 0 00.025.034l.008.01.003.003.007.01.008.01.008.01.01.014.008.01c.175.225.374.439.595.64l.882-.962c-.588-.54-.946-1.16-1.036-1.796z"
|
|
3190
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3191
|
+
fill: "currentColor",
|
|
3192
|
+
d: "M4.675 13.035l-.559 1.18a8.37 8.37 0 00.87.351l.03.01.004.002h.001l.004.002h.001a8.47 8.47 0 00.029.01h.004v.001l.005.001.005.002.024.008.005.001.004.002h.002l.004.002.005.001.024.008.004.001h.002l.003.002h.002l.004.002.005.001.018.006h.002l.003.002h.002l.003.001h.002l.003.002h.002l.004.001.001.001.004.001h.002a6.774 6.774 0 00.016.006h.002l.003.001.003.001h.002l.003.002h.002l.003.001.003.001.003.001h.002l.005.002.006.002.005.001.002.001.003.001h.002l.003.002h.003l.003.001h.002l.003.002h.002l.004.002h.001a2.323 2.323 0 00.008.002l.003.001h.002l.003.002h.003l.003.001.002.001h.003l.002.002h.004l.002.001.003.001h.002l.01.004h.002l.004.001h.002l.003.002h.002l.004.001.002.001a4.994 4.994 0 00.005.002h.004l.001.001.005.001.011.004h.002l.004.001h.001l.004.002h.002l.004.001h.001a2.99 2.99 0 00.006.002l.005.002.017.005.005.001h.001l.005.002h.001l.004.001h.001l.005.002.017.005h.001l.005.001h.001l.004.002h.002l.004.001h.001l.005.002.029.008.005.001.006.002c.472.126.967.217 1.48.268l.13-1.3a7.595 7.595 0 01-2.467-.665z"
|
|
3193
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3194
|
+
fill: "currentColor",
|
|
3195
|
+
d: "M11.346 13.023c-.73.35-1.582.583-2.463.674l.135 1.3h.004l.003-.001a3.627 3.627 0 00.011-.001h.002l.004-.001h.008l.004-.001h.006l.002-.001h.006l.005-.001a.338.338 0 01.013-.002h.001a6.905 6.905 0 01.007 0l.003-.001h.006l.003-.001h.006l.003-.001h.007l.001-.001h.008l.004-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001a.638.638 0 00.006 0l.002-.001h.005l.006-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001h.002l.003-.001h.006l.004-.001h.004l.002-.001h.006l.004-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001h.002l.005-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001h.002l.004-.001h.002l.004-.001h.002l.011-.002h.008l.004-.001h.002l.004-.001h.002l.004-.001h.006l.002-.001.011-.002h.008l.004-.001h.002l.004-.001h.002l.004-.001h.006l.001-.001h.006l.012-.003h.008l.004-.001h.001l.005-.001h.001a6.885 6.885 0 00.01-.002h.002l.012-.002h.005l.002-.001h.006l.004-.002h.008a4.103 4.103 0 00.005-.002h.006l.012-.002.006-.001h.001l.005-.001h.002l.004-.001h.006l.001-.001.005-.001.019-.003h.005l.001-.001h.005l.002-.001h.005l.005-.002h.001a8.732 8.732 0 00.03-.005h.007l.004-.002h.007l.018-.004h.006l.001-.001h.005v-.001h.005l.002-.001.005-.001a2.921 2.921 0 00.024-.004l.006-.001.006-.001.005-.001h.002l.005-.001.018-.004h.006l.006-.002h.006l.006-.002.024-.004.006-.001.006-.002.03-.005.005-.001h.001l.005-.001.006-.002.036-.007a8.85 8.85 0 001.305-.36l.005-.002.005-.002.022-.008a17.301 17.301 0 00.01-.003h.001l.005-.002.005-.002h.001l.016-.007.005-.001.001-.001.004-.001h.001a1.621 1.621 0 00.01-.004l.005-.002a8.232 8.232 0 00.017-.007l.004-.001.002-.001.003-.001.002-.001.003-.001h.002l.004-.002a.449.449 0 01.005-.002h.001a5.7 5.7 0 00.01-.005h.002l.004-.002h.001l.004-.002h.002l.003-.001.002-.001.003-.001.002-.001.003-.002h.002l.004-.002.006-.002h.001l.004-.002h.002l.003-.002h.002l.003-.002h.002l.003-.002h.002l.003-.002h.002l.003-.002h.002l.002-.002.006-.002h.002l.002-.002h.003l.002-.002h.002l.003-.002h.002l.004-.002h.001l.003-.001.002-.001.003-.002.014-.005.004-.002h.001l.004-.002.005-.002.005-.001.027-.012.005-.002c.002 0 .003 0 .004-.002.141-.057.278-.118.412-.182l-.564-1.178z"
|
|
3196
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3197
|
+
fill: "currentColor",
|
|
3198
|
+
d: "M13.705 10.33c-.084.636-.436 1.259-1.02 1.8l.889.957a5.4 5.4 0 00.439-.456v-.001l.01-.013h.001l.008-.01.008-.01.011-.012a28.835 28.835 0 00.008-.01l.008-.01.008-.01.003-.003a5.62 5.62 0 00.015-.019l.001-.001.003-.003.004-.006h.001l.002-.004h.001l.005-.006.002-.003v-.001l.008-.009V12.5l.003-.003.004-.006h.001l.002-.003.002-.002.003-.004.001-.002.002-.002.001-.002.003-.003.002-.002c0-.001 0-.002.002-.003v-.001l.003-.003.001-.002.003-.003.001-.002.002-.002a2.87 2.87 0 01.004-.006l.002-.002.002-.002.001-.002.002-.002.002-.004.002-.002.002-.002.001-.002.003-.003.001-.002.002-.003.002-.001.002-.003c0-.001 0-.002.002-.003l.002-.002.001-.002.002-.003.001-.001a1.216 1.216 0 00.006-.008l.002-.002a9.263 9.263 0 00.004-.005c0-.001 0-.002.002-.003a.248.248 0 01.005-.007l.002-.003.001-.002.002-.002.001-.002.003-.004.001-.001.002-.003.002-.002.002-.004.002-.001c0-.001 0-.002.002-.003v-.001l.003-.004.001-.001.003-.004v-.001l.003-.003.001-.002.003-.004.003-.004.001-.001.003-.004v-.002c.002 0 .002-.002.003-.003l.001-.001.003-.004.003-.005h.001a.884.884 0 00.003-.005l.003-.004.001-.002.003-.003v-.001a1.55 1.55 0 01.003-.004l.001-.001.002-.004.001-.001.003-.004a.95.95 0 00.003-.005h.001l.003-.005.003-.005h.001l.003-.004v-.001l.003-.005.003-.004.001-.001.003-.004.003-.005.001-.001.003-.004.003-.005.003-.004v-.001l.004-.005.003-.004v-.001l.007-.01.003-.004.003-.005.001-.001.003-.004.003-.005.003-.005.007-.01a2.74 2.74 0 00.007-.01c0-.002.002-.003.003-.005 0-.002.002-.003.003-.005l.003-.005.007-.01.006-.01.003-.004a4.075 4.075 0 00.496-1.077l.008-.028.003-.011.003-.011.002-.006.001-.005.002-.005c0-.004.002-.008.003-.011v-.001l.003-.01v-.001l.001-.005.002-.005v-.001-.005h.001l.001-.006.002-.005.001-.006.002-.005v-.005l.001-.001.001-.005v-.001l.002-.004v-.001a1.112 1.112 0 00.002-.01v-.002l.002-.004.001-.005v-.002l.001-.004v-.001l.002-.005v-.001-.004l.001-.001.001-.005a.131.131 0 01.003-.01v-.002l.001-.004v-.002l.001-.003v-.002l.002-.004v-.002-.003l.001-.002.001-.005v-.002l.001-.002v-.003l.001-.003.001-.003v-.003l.001-.002V10.8l.001-.002.001-.004v-.002l.001-.003v-.002l.002-.004v-.003-.002l.001-.003v-.002l.002-.005v-.002-.002l.001-.002v-.005l.001-.002.001-.003v-.002-.003h.001l.001-.007v-.001l.001-.003v-.002l.002-.005v-.002-.003l.002-.008v-.003l.001-.002.002-.01V10.7v-.004l.002-.007.003-.016c.01-.057.02-.115.027-.173l-1.295-.17z"
|
|
3199
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3200
|
+
fill: "currentColor",
|
|
3201
|
+
d: "M12.741 6.316l-.714 1.093c.71.464 1.225 1.033 1.492 1.647l1.198-.52a4.442 4.442 0 00-.643-1.043 5.081 5.081 0 00-.018-.022l-.004-.004a17.562 17.562 0 00-.015-.018l-.004-.005a4.797 4.797 0 00-.007-.009l-.004-.004a2.821 2.821 0 00-.015-.018l-.004-.004a4.948 4.948 0 00-.007-.009l-.004-.004a4.75 4.75 0 00-.008-.01l-.004-.004-.004-.004a1.755 1.755 0 01-.003-.004l-.004-.005-.004-.004a12.183 12.183 0 00-.003-.004l-.001-.001a4.714 4.714 0 00-.007-.008l-.001-.001-.003-.003v-.001l-.004-.004-.004-.004v-.001l-.004-.003v-.001l-.004-.004v-.001a.855.855 0 00-.003-.003l-.002-.001c0-.002-.002-.003-.003-.004l-.004-.004v-.001l-.003-.003-.001-.001-.003-.004-.001-.001-.003-.003-.001-.001-.003-.003v-.001a1.804 1.804 0 01-.004-.004h-.001l-.003-.004-.001-.001-.003-.003v-.001l-.004-.004-.001-.001-.003-.003v-.001l-.004-.004-.004-.004v-.001l-.004-.003v-.001a1.25 1.25 0 00-.004-.004h-.001c0-.002-.002-.003-.003-.004l-.001-.001a.808.808 0 00-.004-.004l-.003-.004a.921.921 0 00-.004-.004l-.004-.004v-.001l-.004-.003-.001-.002-.003-.002v-.002c-.002 0-.003-.002-.004-.003l-.001-.001-.003-.003a.307.307 0 01-.004-.005 2.048 2.048 0 01-.006-.005l-.002-.003-.001-.001-.003-.003-.001-.001-.003-.004-.002-.001-.002-.003-.002-.001-.003-.003-.001-.002-.002-.002-.002-.002-.002-.002-.002-.002a1.184 1.184 0 01-.003-.003l-.002-.002-.002-.002a.356.356 0 00-.003-.004l-.002-.002-.003-.003-.002-.001-.002-.003-.001-.001-.003-.003-.002-.002-.002-.002-.002-.002-.002-.002-.002-.002a1.177 1.177 0 00-.003-.003l-.002-.002-.002-.002-.002-.002-.001-.002c-.001 0-.002 0-.002-.002l-.003-.003-.002-.002-.002-.002-.002-.001-.002-.002-.003-.003-.002-.002-.002-.002-.002-.002a.37.37 0 00-.001-.002l-.003-.002-.002-.003-.002-.002-.002-.002-.002-.002-.002-.001-.003-.004-.002-.001-.002-.002-.002-.002-.002-.002-.002-.003-.003-.002-.002-.002-.001-.002-.002-.001-.003-.003a.66.66 0 00-.002-.002l-.002-.002-.002-.002-.002-.002-.002-.002-.003-.003-.002-.002-.002-.002-.002-.002-.001-.001-.005-.004v-.001l-.003-.003h-.001l-.003-.003a.222.222 0 00-.005-.005l-.001-.002-.003-.002-.001-.001a.5.5 0 00-.004-.004l-.003-.003-.002-.002-.002-.002-.002-.002-.002-.002-.003-.003c-.001 0-.002 0-.002-.002l-.002-.001-.002-.002-.002-.002a1.175 1.175 0 01-.005-.005l-.002-.002-.002-.002-.002-.002L13.613 7l-.003-.002-.002-.002-.002-.002-.002-.002-.002-.002-.002-.002-.003-.003-.002-.001-.002-.002a.42.42 0 01-.007-.007l-.002-.002-.002-.002-.002-.001-.003-.003-.002-.002-.002-.002-.002-.002-.002-.002a.378.378 0 00-.007-.006l-.003-.002-.001-.002-.003-.002-.001-.002-.004-.003a.298.298 0 00-.006-.005l-.002-.003-.002-.001-.003-.003-.002-.002-.002-.002-.002-.001-.003-.003-.002-.002-.002-.002-.002-.002-.003-.002-.001-.001a1.366 1.366 0 00-.005-.005l-.003-.002-.001-.002-.004-.003-.004-.004a.215.215 0 01-.004-.003l-.002-.002-.003-.003-.002-.001-.002-.003h-.002c0-.002-.002-.003-.003-.003l-.001-.001-.004-.004-.004-.004h-.001a1.435 1.435 0 01-.004-.004l-.005-.004-.004-.004-.005-.004-.004-.004h-.001l-.003-.004a.141.141 0 00-.006-.004l-.004-.004-.005-.004-.004-.004h-.001l-.004-.004a5.38 5.38 0 00-.009-.008l-.004-.004h-.001l-.005-.004-.004-.004a.086.086 0 01-.004-.004h-.001l-.004-.004h-.001a1.617 1.617 0 01-.004-.004l-.005-.004-.004-.004-.005-.004-.01-.007v-.001l-.004-.004-.005-.004-.004-.003-.01-.008-.004-.004a6.001 6.001 0 00-.023-.02h-.001a6.42 6.42 0 00-.57-.417z"
|
|
3202
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3203
|
+
fill: "currentColor",
|
|
3204
|
+
d: "M8 1a3.532 3.532 0 00-3.57 3.57c0 .573.21 1.23.642 2.008.251.452.576.943.968 1.458.315.415.67.842 1.057 1.273l.484.516c.111.113.26.175.419.175h.001c.16 0 .308-.063.42-.177l.135-.14A19.587 19.587 0 009.96 8.037c.392-.515.717-1.006.968-1.458.431-.779.641-1.435.641-2.009A3.532 3.532 0 008 1zm2.388 3.57c0 .355-.171.852-.493 1.435-.223.4-.517.844-.876 1.316-.304.4-.638.802-.992 1.194L8 8.545l-.026-.03c-.36-.4-.695-.801-.993-1.194-.359-.472-.653-.915-.876-1.316-.322-.582-.492-1.078-.492-1.436C5.613 3.23 6.661 2.182 8 2.182s2.388 1.048 2.388 2.387z"
|
|
3205
|
+
}), /*#__PURE__*/createElement("circle", {
|
|
3206
|
+
cx: 8,
|
|
3207
|
+
cy: 4.579,
|
|
3208
|
+
r: 0.991,
|
|
3209
|
+
fill: "currentColor",
|
|
3210
|
+
fillRule: "evenodd",
|
|
3211
|
+
clipRule: "evenodd"
|
|
3212
|
+
}));
|
|
3213
|
+
}
|
|
3214
|
+
|
|
3084
3215
|
function AccessibilityIcon(props) {
|
|
3085
3216
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
3086
3217
|
viewBox: "0 0 16 16",
|
|
@@ -3371,6 +3502,23 @@ function CloseIcon(props) {
|
|
|
3371
3502
|
}));
|
|
3372
3503
|
}
|
|
3373
3504
|
|
|
3505
|
+
function CloseSmallIcon(props) {
|
|
3506
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
3507
|
+
viewBox: "0 0 16 16",
|
|
3508
|
+
width: props.width || props.size || '1em',
|
|
3509
|
+
height: props.height || props.size || '1em',
|
|
3510
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
3511
|
+
inline: undefined,
|
|
3512
|
+
color: props.color || 'currentColor'
|
|
3513
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3514
|
+
fill: "currentColor",
|
|
3515
|
+
d: "M3.004 3.934l.93-.93 9.07 9.069-.93.93z"
|
|
3516
|
+
}), /*#__PURE__*/createElement("path", {
|
|
3517
|
+
fill: "currentColor",
|
|
3518
|
+
d: "M3.004 12.073l9.07-9.07.93.93-9.069 9.07z"
|
|
3519
|
+
}));
|
|
3520
|
+
}
|
|
3521
|
+
|
|
3374
3522
|
function ColorPickerIcon(props) {
|
|
3375
3523
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
3376
3524
|
viewBox: "0 0 16 16",
|
|
@@ -4220,6 +4368,86 @@ function UsersIcon(props) {
|
|
|
4220
4368
|
}));
|
|
4221
4369
|
}
|
|
4222
4370
|
|
|
4371
|
+
function OutlinedValidationCheckIcon(props) {
|
|
4372
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
4373
|
+
viewBox: "0 0 16 16",
|
|
4374
|
+
width: props.width || props.size || '1em',
|
|
4375
|
+
height: props.height || props.size || '1em',
|
|
4376
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
4377
|
+
inline: undefined,
|
|
4378
|
+
color: props.color || 'currentColor'
|
|
4379
|
+
}), /*#__PURE__*/createElement("g", {
|
|
4380
|
+
fill: "currentColor",
|
|
4381
|
+
fillRule: "evenodd",
|
|
4382
|
+
clipRule: "evenodd"
|
|
4383
|
+
}, /*#__PURE__*/createElement("path", {
|
|
4384
|
+
d: "M8 1a7 7 0 100 14A7 7 0 008 1zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
4385
|
+
}), /*#__PURE__*/createElement("path", {
|
|
4386
|
+
d: "M6.82 9.386L4.917 7.43 4 8.375l2.36 2.43.081.07c.254.188.61.164.838-.07L12 5.944 11.082 5 6.819 9.386z"
|
|
4387
|
+
})));
|
|
4388
|
+
}
|
|
4389
|
+
|
|
4390
|
+
function OutlinedValidationErrorIcon(props) {
|
|
4391
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
4392
|
+
viewBox: "0 0 16 16",
|
|
4393
|
+
width: props.width || props.size || '1em',
|
|
4394
|
+
height: props.height || props.size || '1em',
|
|
4395
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
4396
|
+
inline: undefined,
|
|
4397
|
+
color: props.color || 'currentColor'
|
|
4398
|
+
}), /*#__PURE__*/createElement("g", {
|
|
4399
|
+
fill: "currentColor",
|
|
4400
|
+
fillRule: "evenodd",
|
|
4401
|
+
clipRule: "evenodd"
|
|
4402
|
+
}, /*#__PURE__*/createElement("path", {
|
|
4403
|
+
d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
4404
|
+
}), /*#__PURE__*/createElement("path", {
|
|
4405
|
+
d: "M10.05 4.96L8 7.01 5.95 4.96l-.99.99L7.01 8l-2.05 2.05.99.99L8 8.989l2.05 2.051.99-.99L8.989 8l2.051-2.05z"
|
|
4406
|
+
})));
|
|
4407
|
+
}
|
|
4408
|
+
|
|
4409
|
+
function OutlinedValidationExclamationIcon(props) {
|
|
4410
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
4411
|
+
viewBox: "0 0 16 16",
|
|
4412
|
+
width: props.width || props.size || '1em',
|
|
4413
|
+
height: props.height || props.size || '1em',
|
|
4414
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
4415
|
+
inline: undefined,
|
|
4416
|
+
color: props.color || 'currentColor'
|
|
4417
|
+
}), /*#__PURE__*/createElement("g", {
|
|
4418
|
+
fill: "currentColor"
|
|
4419
|
+
}, /*#__PURE__*/createElement("path", {
|
|
4420
|
+
d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
4421
|
+
}), /*#__PURE__*/createElement("path", {
|
|
4422
|
+
d: "M7.3 4h1.4v5.1H7.3z"
|
|
4423
|
+
}), /*#__PURE__*/createElement("circle", {
|
|
4424
|
+
cx: 8.005,
|
|
4425
|
+
cy: 11.375,
|
|
4426
|
+
r: 0.875
|
|
4427
|
+
})));
|
|
4428
|
+
}
|
|
4429
|
+
|
|
4430
|
+
function OutlinedValidationInfoIcon(props) {
|
|
4431
|
+
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
4432
|
+
viewBox: "0 0 16 16",
|
|
4433
|
+
width: props.width || props.size || '1em',
|
|
4434
|
+
height: props.height || props.size || '1em',
|
|
4435
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
4436
|
+
inline: undefined,
|
|
4437
|
+
color: props.color || 'currentColor'
|
|
4438
|
+
}), /*#__PURE__*/createElement("g", {
|
|
4439
|
+
fill: "currentColor"
|
|
4440
|
+
}, /*#__PURE__*/createElement("path", {
|
|
4441
|
+
d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
4442
|
+
}), /*#__PURE__*/createElement("circle", {
|
|
4443
|
+
cx: 8.005,
|
|
4444
|
+
cy: 4.875,
|
|
4445
|
+
r: 0.875
|
|
4446
|
+
}), /*#__PURE__*/createElement("path", {
|
|
4447
|
+
d: "M8.7 7.5l-.006-.095A.7.7 0 008 6.8H6.3v1.4h1v2.418h-1v1.4h3.4v-1.4H8.699L8.7 7.5z"
|
|
4448
|
+
})));
|
|
4449
|
+
}
|
|
4450
|
+
|
|
4223
4451
|
function ValidationCheckIcon(props) {
|
|
4224
4452
|
return /*#__PURE__*/createElement("svg", _extends({}, props, {
|
|
4225
4453
|
viewBox: "0 0 14 14",
|
|
@@ -4609,4 +4837,4 @@ function ZoomOutIcon(props) {
|
|
|
4609
4837
|
}));
|
|
4610
4838
|
}
|
|
4611
4839
|
|
|
4612
|
-
export { AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AnimalFreeIcon, AnimalIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CablewayIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckIcon, CityIcon, ClockIcon, CloseIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FerryIcon, FileIcon, ForwardIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LuggageIcon, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MinimizeIcon, MobileIcon, MoneyIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlayroomIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, SJIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UnlinkIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketIcon, ValidationCheckIcon, ValidationErrorIcon, ValidationExclamationIcon, ValidationInfoIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkingIcon, WarningIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoomInIcon, ZoomOutIcon };
|
|
4840
|
+
export { AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AnimalFreeIcon, AnimalIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CablewayIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckIcon, CityIcon, ClockIcon, CloseIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CorrespondenceIcon, CouchetteIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FerryIcon, FileIcon, ForwardIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LuggageIcon, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MinimizeIcon, MobileIcon, MoneyIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlayroomIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, SJIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UnlinkIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketIcon, ValidationCheckIcon, ValidationErrorIcon, ValidationExclamationIcon, ValidationInfoIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkingIcon, WarningIcon, WaterTapIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoneIcon, ZoomInIcon, ZoomOutIcon, ZvippIcon };
|
package/dist/index.esm.native.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createElement } from 'react';
|
|
2
|
-
import Svg, { Path, G, Circle } from 'react-native-svg';
|
|
2
|
+
import Svg, { Path, G, Circle, Defs, ClipPath, Use } from 'react-native-svg';
|
|
3
3
|
|
|
4
4
|
function _extends() {
|
|
5
5
|
_extends = Object.assign || function (target) {
|
|
@@ -262,22 +262,19 @@ function ShareIcon(props) {
|
|
|
262
262
|
|
|
263
263
|
function SwitchIcon(props) {
|
|
264
264
|
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
265
|
-
id: "Layer_1",
|
|
266
|
-
x: 0,
|
|
267
|
-
y: 0,
|
|
268
265
|
viewBox: "0 0 16 16",
|
|
269
|
-
xmlSpace: "preserve",
|
|
270
266
|
width: props.width || props.size || 16,
|
|
271
267
|
height: props.height || props.size || 16,
|
|
272
268
|
color: props.color || '#181C56'
|
|
269
|
+
}), /*#__PURE__*/createElement(G, {
|
|
270
|
+
fill: "currentColor",
|
|
271
|
+
fillRule: "evenodd",
|
|
272
|
+
clipRule: "evenodd"
|
|
273
|
+
}, /*#__PURE__*/createElement(Path, {
|
|
274
|
+
d: "M12.321 14.2l-.899-.9 1.5-1.5h-8.6v-1.3h8.6l-1.5-1.5.9-.9 2.5 2.5c.2.2.2.6.1.8l-.1.1-2.5 2.7z"
|
|
273
275
|
}), /*#__PURE__*/createElement(Path, {
|
|
274
|
-
d: "
|
|
275
|
-
|
|
276
|
-
}), /*#__PURE__*/createElement(Path, {
|
|
277
|
-
id: "Icon-Fill",
|
|
278
|
-
d: "M3.7 1.8l.9.9-1.4 1.5h8.6v1.3H3.2L4.7 7l-1 .8-2.5-2.6c-.2-.2-.3-.5-.1-.8l.1-.1 2.5-2.5z",
|
|
279
|
-
className: "st0"
|
|
280
|
-
}));
|
|
276
|
+
d: "M3.722 1.8l.9.9-1.4 1.5h8.6v1.3h-8.6l1.5 1.5-1 .8-2.5-2.6c-.2-.2-.3-.5-.1-.8l.1-.1 2.5-2.5z"
|
|
277
|
+
})));
|
|
281
278
|
}
|
|
282
279
|
|
|
283
280
|
function ToFromIcon(props) {
|
|
@@ -506,6 +503,20 @@ function CoffeeIcon(props) {
|
|
|
506
503
|
}));
|
|
507
504
|
}
|
|
508
505
|
|
|
506
|
+
function CouchetteIcon(props) {
|
|
507
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
508
|
+
viewBox: "0 0 16 16",
|
|
509
|
+
width: props.width || props.size || 16,
|
|
510
|
+
height: props.height || props.size || 16,
|
|
511
|
+
color: props.color || '#181C56'
|
|
512
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
513
|
+
fill: "currentColor",
|
|
514
|
+
fillRule: "evenodd",
|
|
515
|
+
d: "M14.897 7.756a.632.632 0 00-.626-.547h-.09V4.248a.685.685 0 00-.684-.685h-3.374a.798.798 0 00-.382.107 1.09 1.09 0 00-.46-.107H6.622c-.166 0-.32.042-.462.107a.799.799 0 00-.383-.107H2.406a.686.686 0 00-.685.685v2.961h-.089a.632.632 0 00-.626.547L1 7.84v4.596h1.264v-1.666H13.639v1.666h1.265V7.841l-.006-.085zM13.096 4.65v2.56H10.39V4.65h2.706zm-3.792.023V7.21H6.603l.02-2.56 2.68.024zM2.808 4.65h2.704v2.559H2.807V4.65zm10.83 4.857H2.265l-.001-1.034h11.375l-.001 1.034z",
|
|
516
|
+
clipRule: "evenodd"
|
|
517
|
+
}));
|
|
518
|
+
}
|
|
519
|
+
|
|
509
520
|
function CutleryIcon(props) {
|
|
510
521
|
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
511
522
|
viewBox: "0 0 16 16",
|
|
@@ -728,6 +739,25 @@ function WaitingRoomIcon(props) {
|
|
|
728
739
|
}));
|
|
729
740
|
}
|
|
730
741
|
|
|
742
|
+
function WaterTapIcon(props) {
|
|
743
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
744
|
+
viewBox: "0 0 16 16",
|
|
745
|
+
width: props.width || props.size || 16,
|
|
746
|
+
height: props.height || props.size || 16,
|
|
747
|
+
color: props.color || '#181C56'
|
|
748
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
749
|
+
fill: "currentColor",
|
|
750
|
+
fillRule: "evenodd",
|
|
751
|
+
d: "M6.739 1h5.512v1.315H6.74V1z",
|
|
752
|
+
clipRule: "evenodd"
|
|
753
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
754
|
+
fill: "currentColor",
|
|
755
|
+
fillRule: "evenodd",
|
|
756
|
+
d: "M8.844 4.246h-2.45c-1.83 0-3.242 1.578-3.242 3.434H4.46c0-1.21.905-2.119 1.934-2.119H14.4V4.246h-4.248V2.128H8.844v2.118zM4.291 9.459l-.485.442-.484-.442a.652.652 0 01.969 0zm-.485 1.479a9.529 9.529 0 00-.239.33 5.89 5.89 0 00-.48.81c-.13.278-.179.479-.179.599 0 .674.466 1.008.898 1.008s.899-.334.899-1.008c0-.12-.05-.321-.18-.598a5.89 5.89 0 00-.48-.81 9.529 9.529 0 00-.239-.331zm0-1.037l-.484-.442-.002.002-.005.005-.015.017a7.37 7.37 0 00-.241.285c-.153.187-.359.45-.566.75a7.191 7.191 0 00-.588.999c-.16.342-.305.752-.305 1.16C1.6 14.112 2.687 15 3.806 15c1.12 0 2.207-.888 2.207-2.323 0-.408-.145-.818-.305-1.16a7.191 7.191 0 00-.588-1 11.711 11.711 0 00-.807-1.034l-.016-.017-.004-.005-.001-.001-.001-.001-.485.442z",
|
|
757
|
+
clipRule: "evenodd"
|
|
758
|
+
}));
|
|
759
|
+
}
|
|
760
|
+
|
|
731
761
|
function WheelchairIcon(props) {
|
|
732
762
|
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
733
763
|
viewBox: "0 0 16 16",
|
|
@@ -1437,6 +1467,36 @@ function VyIcon(props) {
|
|
|
1437
1467
|
}));
|
|
1438
1468
|
}
|
|
1439
1469
|
|
|
1470
|
+
function ZvippIcon(props) {
|
|
1471
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
1472
|
+
viewBox: "0 0 16 16",
|
|
1473
|
+
width: props.width || props.size || 16,
|
|
1474
|
+
height: props.height || props.size || 16,
|
|
1475
|
+
color: props.color || '#181C56'
|
|
1476
|
+
}), /*#__PURE__*/createElement(Defs, null, /*#__PURE__*/createElement(Path, {
|
|
1477
|
+
id: "a",
|
|
1478
|
+
d: "M14.783 5.275l-2.709-2.364H4.023L1 5.511l6.755 7.673z"
|
|
1479
|
+
})), /*#__PURE__*/createElement(ClipPath, {
|
|
1480
|
+
id: "b"
|
|
1481
|
+
}, /*#__PURE__*/createElement(Use, {
|
|
1482
|
+
overflow: "visible",
|
|
1483
|
+
xlinkHref: "#a"
|
|
1484
|
+
})), /*#__PURE__*/createElement(G, {
|
|
1485
|
+
fill: "#FFD600",
|
|
1486
|
+
clipPath: "url(#b)"
|
|
1487
|
+
}, /*#__PURE__*/createElement(Path, {
|
|
1488
|
+
d: "M4.132 5.149l4.611 7.555.471-.457-4.315-6.601z"
|
|
1489
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
1490
|
+
d: "M12.731 7.448L8.229 2.542l-2.31.004 2.536 3.097h-.432L5.476 2.54l-.746.004.524 3.099 4.165 6.337 1.142-1.623z"
|
|
1491
|
+
})), /*#__PURE__*/createElement(G, {
|
|
1492
|
+
fill: "#009D48"
|
|
1493
|
+
}, /*#__PURE__*/createElement(Path, {
|
|
1494
|
+
d: "M4.601 5.646h.298l.355-.003h2.457L5.192 2.58H3.963L1 5.511l6.972 7.909.989-1.113z"
|
|
1495
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
1496
|
+
d: "M12.232 7.448H8.59l1.987 3.041L15 5.511 12.014 2.58H8.26z"
|
|
1497
|
+
})));
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1440
1500
|
function BanknoteIcon(props) {
|
|
1441
1501
|
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
1442
1502
|
viewBox: "0 0 16 16",
|
|
@@ -2519,6 +2579,30 @@ function CityIcon(props) {
|
|
|
2519
2579
|
}));
|
|
2520
2580
|
}
|
|
2521
2581
|
|
|
2582
|
+
function CorrespondenceIcon(props) {
|
|
2583
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
2584
|
+
viewBox: "0 0 16 16",
|
|
2585
|
+
width: props.width || props.size || 16,
|
|
2586
|
+
height: props.height || props.size || 16,
|
|
2587
|
+
color: props.color || '#181C56'
|
|
2588
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2589
|
+
fill: "currentColor",
|
|
2590
|
+
fillRule: "evenodd",
|
|
2591
|
+
d: "M5.943 2.5L5 3.443l4.291 4.29L5 12.023l.943.944 4.762-4.762a.667.667 0 00.07-.86l-.07-.083L5.943 2.5z",
|
|
2592
|
+
clipRule: "evenodd"
|
|
2593
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2594
|
+
fill: "currentColor",
|
|
2595
|
+
fillRule: "evenodd",
|
|
2596
|
+
d: "M10.043 2.5l-.943.943 4.291 4.29-4.291 4.29.943.944 4.762-4.762a.667.667 0 00.07-.86l-.07-.083L10.043 2.5z",
|
|
2597
|
+
clipRule: "evenodd"
|
|
2598
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2599
|
+
fill: "currentColor",
|
|
2600
|
+
fillRule: "evenodd",
|
|
2601
|
+
d: "M1.943 2.5L1 3.443l4.291 4.29L1 12.023l.943.944 4.762-4.762a.667.667 0 00.07-.86l-.07-.083L1.943 2.5z",
|
|
2602
|
+
clipRule: "evenodd"
|
|
2603
|
+
}));
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2522
2606
|
function DestinationIcon(props) {
|
|
2523
2607
|
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
2524
2608
|
viewBox: "0 0 12 14",
|
|
@@ -2754,6 +2838,43 @@ function ValidTicketIcon(props) {
|
|
|
2754
2838
|
}));
|
|
2755
2839
|
}
|
|
2756
2840
|
|
|
2841
|
+
function ZoneIcon(props) {
|
|
2842
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
2843
|
+
viewBox: "0 0 16 16",
|
|
2844
|
+
width: props.width || props.size || 16,
|
|
2845
|
+
height: props.height || props.size || 16,
|
|
2846
|
+
color: props.color || '#181C56'
|
|
2847
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2848
|
+
fill: "currentColor",
|
|
2849
|
+
d: "M3.226 6.335c-.174.114-.34.235-.496.361a6.113 6.113 0 00-.062.05v.001l-.005.004-.01.008a5.595 5.595 0 00-.009.008l-.004.003a5.165 5.165 0 00-.01.008l-.004.004-.005.004-.005.004-.004.004-.005.004-.004.004h-.001l-.009.008-.004.004h-.001l-.004.004-.004.004h-.002c0 .002-.002.003-.003.004l-.005.004-.004.004h-.001a1.762 1.762 0 01-.004.004l-.005.004-.004.003-.001.002c-.002 0-.003.002-.004.003l-.004.004H2.54a.173.173 0 00-.004.004l-.004.004-.001.001-.003.003h-.001l-.003.003-.001.001-.004.004-.002.001-.002.002-.002.002-.003.003-.002.001-.002.003-.002.001-.003.002-.001.002c-.002 0-.003.002-.004.003l-.002.002-.002.002-.002.001-.002.003-.002.001-.003.003a.423.423 0 00-.004.004l-.002.001-.002.002-.003.003-.003.002a.451.451 0 00-.004.004l-.001.001-.004.003-.002.002-.002.002-.002.002a.3.3 0 00-.006.006l-.003.003h-.002c0 .002-.001.002-.002.003l-.001.001-.005.004-.001.001-.003.003a5.414 5.414 0 00-.01.009l-.003.003-.006.006-.003.003h-.001l-.003.003-.006.006-.003.003-.01.009-.003.003a5.725 5.725 0 00-.02.018l-.002.003h-.001l-.009.01-.003.002a4.668 4.668 0 00-1.084 1.536l1.203.51c.26-.615.771-1.186 1.477-1.652l-.72-1.09z"
|
|
2850
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2851
|
+
fill: "currentColor",
|
|
2852
|
+
d: "M2.293 10.352L1 10.535a3.665 3.665 0 00.054.294l.006.027.003.012.004.016.002.011.003.012.003.011.001.004.003.012.003.011.003.012.001.004.003.011a5.234 5.234 0 00.006.023l.001.004.002.008.002.003v.001a4.794 4.794 0 00.006.022v.001l.001.003v.001l.002.007.001.004.004.011v.001l.003.01v.001l.001.004.003.007v.004h.001l.003.011v.001l.004.01v.005h.001a2.172 2.172 0 00.002.008l.001.003v.001l.004.01v.001l.004.01v.005h.001l.002.007.002.004a1.444 1.444 0 01.003.011v.001l.004.01v.001l.001.004.004.011.004.011v.001l.004.01v.001l.001.004.003.007v.004h.001a4.825 4.825 0 00.004.012l.004.01v.001l.001.003v.001l.003.007.001.003v.002l.004.01.002.004.002.007.002.004v.001l.002.006.002.004v.001l.004.01v.001l.004.01v.001l.002.003v.002l.003.006.001.004.004.01v.002l.002.003c0 .003.002.005.003.007l.001.004a.076.076 0 00.003.007l.001.004.001.001.004.01v.001l.002.003.002.007v.001l.002.003v.001a1.922 1.922 0 00.003.007l.001.003v.001l.005.01v.001l.002.003v.001l.002.006v.001l.002.003v.002l.003.005v.001l.002.003v.001a4.3 4.3 0 00.005.011l.001.003.003.007v.001l.002.003v.002l.003.005v.001l.001.003v.002l.005.009v.002l.002.002v.002l.003.005v.001l.002.003v.001l.002.006.001.001.001.003a.115.115 0 00.005.01v.002l.002.003.003.007v.001l.002.003v.001l.003.006.002.004v.001l.005.01.002.004.003.006a.106.106 0 00.002.005l.003.006v.002l.002.002v.002l.005.01.005.01v.001l.002.003v.002l.003.005v.001l.002.003v.001l.005.01a.132.132 0 01.002.004l.003.006v.002l.002.003.003.006.001.001.001.003.001.002.005.009v.001l.002.003c0 .003.002.005.003.007v.001l.002.003v.001l.003.005v.002l.002.002.001.002.003.006.002.003v.002l.002.002v.001l.003.006v.001l.002.003v.001l.004.005v.002a.462.462 0 01.002.004l.003.006.002.003v.002l.006.009v.001l.002.003v.001l.003.006.002.004h.001l.003.007.002.003v.002l.002.002v.001l.004.006v.001l.002.003v.001l.003.005.001.002.001.003h.001l.003.007.002.003a.145.145 0 01.007.012.534.534 0 00.005.009v.001l.002.003v.002l.006.009v.001l.006.01c0 .002.001.002.002.003v.001l.004.006v.001l.002.003v.001l.006.01.006.01v.001l.002.003v.001l.004.006.002.003v.001l.006.01v.001l.006.01.002.003.001.001.003.006a.484.484 0 00.003.005l.003.005.001.001.001.003.002.002.001.002a.193.193 0 00.004.006v.002a.544.544 0 00.003.004l.003.005v.001l.002.003.001.001.004.006.002.003v.001l.006.01.002.004h.001l.003.006.001.001.002.003v.001l.006.01c.003.003.005.007.006.01h.001a.541.541 0 00.006.01l.003.004.006.01v.001l.006.01h.001c0 .002.001.002.002.003v.001l.004.006.002.004h.001l.006.01v.001l.007.01.002.003.004.007.003.003v.001l.007.01a4.58 4.58 0 00.007.01l.002.004.004.006.003.004.006.01a2.872 2.872 0 00.008.011l.002.003.004.007.003.003v.001l.007.01.007.01.007.01.002.004.007.01a5.196 5.196 0 00.01.014l.004.006.003.004.007.01a2.931 2.931 0 00.008.01l.006.01a.043.043 0 01.003.003v.001l.007.01.008.01a.775.775 0 01.002.003l.005.007.003.003.007.01.007.01a4.832 4.832 0 00.025.034l.008.01.003.003.007.01.008.01.008.01.01.014.008.01c.175.225.374.439.595.64l.882-.962c-.588-.54-.946-1.16-1.036-1.796z"
|
|
2853
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2854
|
+
fill: "currentColor",
|
|
2855
|
+
d: "M4.675 13.035l-.559 1.18a8.37 8.37 0 00.87.351l.03.01.004.002h.001l.004.002h.001a8.47 8.47 0 00.029.01h.004v.001l.005.001.005.002.024.008.005.001.004.002h.002l.004.002.005.001.024.008.004.001h.002l.003.002h.002l.004.002.005.001.018.006h.002l.003.002h.002l.003.001h.002l.003.002h.002l.004.001.001.001.004.001h.002a6.774 6.774 0 00.016.006h.002l.003.001.003.001h.002l.003.002h.002l.003.001.003.001.003.001h.002l.005.002.006.002.005.001.002.001.003.001h.002l.003.002h.003l.003.001h.002l.003.002h.002l.004.002h.001a2.323 2.323 0 00.008.002l.003.001h.002l.003.002h.003l.003.001.002.001h.003l.002.002h.004l.002.001.003.001h.002l.01.004h.002l.004.001h.002l.003.002h.002l.004.001.002.001a4.994 4.994 0 00.005.002h.004l.001.001.005.001.011.004h.002l.004.001h.001l.004.002h.002l.004.001h.001a2.99 2.99 0 00.006.002l.005.002.017.005.005.001h.001l.005.002h.001l.004.001h.001l.005.002.017.005h.001l.005.001h.001l.004.002h.002l.004.001h.001l.005.002.029.008.005.001.006.002c.472.126.967.217 1.48.268l.13-1.3a7.595 7.595 0 01-2.467-.665z"
|
|
2856
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2857
|
+
fill: "currentColor",
|
|
2858
|
+
d: "M11.346 13.023c-.73.35-1.582.583-2.463.674l.135 1.3h.004l.003-.001a3.627 3.627 0 00.011-.001h.002l.004-.001h.008l.004-.001h.006l.002-.001h.006l.005-.001a.338.338 0 01.013-.002h.001a6.905 6.905 0 01.007 0l.003-.001h.006l.003-.001h.006l.003-.001h.007l.001-.001h.008l.004-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001a.638.638 0 00.006 0l.002-.001h.005l.006-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001h.002l.003-.001h.006l.004-.001h.004l.002-.001h.006l.004-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001h.002l.005-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001h.002l.004-.001h.002l.004-.001h.002l.011-.002h.008l.004-.001h.002l.004-.001h.002l.004-.001h.006l.002-.001.011-.002h.008l.004-.001h.002l.004-.001h.002l.004-.001h.006l.001-.001h.006l.012-.003h.008l.004-.001h.001l.005-.001h.001a6.885 6.885 0 00.01-.002h.002l.012-.002h.005l.002-.001h.006l.004-.002h.008a4.103 4.103 0 00.005-.002h.006l.012-.002.006-.001h.001l.005-.001h.002l.004-.001h.006l.001-.001.005-.001.019-.003h.005l.001-.001h.005l.002-.001h.005l.005-.002h.001a8.732 8.732 0 00.03-.005h.007l.004-.002h.007l.018-.004h.006l.001-.001h.005v-.001h.005l.002-.001.005-.001a2.921 2.921 0 00.024-.004l.006-.001.006-.001.005-.001h.002l.005-.001.018-.004h.006l.006-.002h.006l.006-.002.024-.004.006-.001.006-.002.03-.005.005-.001h.001l.005-.001.006-.002.036-.007a8.85 8.85 0 001.305-.36l.005-.002.005-.002.022-.008a17.301 17.301 0 00.01-.003h.001l.005-.002.005-.002h.001l.016-.007.005-.001.001-.001.004-.001h.001a1.621 1.621 0 00.01-.004l.005-.002a8.232 8.232 0 00.017-.007l.004-.001.002-.001.003-.001.002-.001.003-.001h.002l.004-.002a.449.449 0 01.005-.002h.001a5.7 5.7 0 00.01-.005h.002l.004-.002h.001l.004-.002h.002l.003-.001.002-.001.003-.001.002-.001.003-.002h.002l.004-.002.006-.002h.001l.004-.002h.002l.003-.002h.002l.003-.002h.002l.003-.002h.002l.003-.002h.002l.003-.002h.002l.002-.002.006-.002h.002l.002-.002h.003l.002-.002h.002l.003-.002h.002l.004-.002h.001l.003-.001.002-.001.003-.002.014-.005.004-.002h.001l.004-.002.005-.002.005-.001.027-.012.005-.002c.002 0 .003 0 .004-.002.141-.057.278-.118.412-.182l-.564-1.178z"
|
|
2859
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2860
|
+
fill: "currentColor",
|
|
2861
|
+
d: "M13.705 10.33c-.084.636-.436 1.259-1.02 1.8l.889.957a5.4 5.4 0 00.439-.456v-.001l.01-.013h.001l.008-.01.008-.01.011-.012a28.835 28.835 0 00.008-.01l.008-.01.008-.01.003-.003a5.62 5.62 0 00.015-.019l.001-.001.003-.003.004-.006h.001l.002-.004h.001l.005-.006.002-.003v-.001l.008-.009V12.5l.003-.003.004-.006h.001l.002-.003.002-.002.003-.004.001-.002.002-.002.001-.002.003-.003.002-.002c0-.001 0-.002.002-.003v-.001l.003-.003.001-.002.003-.003.001-.002.002-.002a2.87 2.87 0 01.004-.006l.002-.002.002-.002.001-.002.002-.002.002-.004.002-.002.002-.002.001-.002.003-.003.001-.002.002-.003.002-.001.002-.003c0-.001 0-.002.002-.003l.002-.002.001-.002.002-.003.001-.001a1.216 1.216 0 00.006-.008l.002-.002a9.263 9.263 0 00.004-.005c0-.001 0-.002.002-.003a.248.248 0 01.005-.007l.002-.003.001-.002.002-.002.001-.002.003-.004.001-.001.002-.003.002-.002.002-.004.002-.001c0-.001 0-.002.002-.003v-.001l.003-.004.001-.001.003-.004v-.001l.003-.003.001-.002.003-.004.003-.004.001-.001.003-.004v-.002c.002 0 .002-.002.003-.003l.001-.001.003-.004.003-.005h.001a.884.884 0 00.003-.005l.003-.004.001-.002.003-.003v-.001a1.55 1.55 0 01.003-.004l.001-.001.002-.004.001-.001.003-.004a.95.95 0 00.003-.005h.001l.003-.005.003-.005h.001l.003-.004v-.001l.003-.005.003-.004.001-.001.003-.004.003-.005.001-.001.003-.004.003-.005.003-.004v-.001l.004-.005.003-.004v-.001l.007-.01.003-.004.003-.005.001-.001.003-.004.003-.005.003-.005.007-.01a2.74 2.74 0 00.007-.01c0-.002.002-.003.003-.005 0-.002.002-.003.003-.005l.003-.005.007-.01.006-.01.003-.004a4.075 4.075 0 00.496-1.077l.008-.028.003-.011.003-.011.002-.006.001-.005.002-.005c0-.004.002-.008.003-.011v-.001l.003-.01v-.001l.001-.005.002-.005v-.001-.005h.001l.001-.006.002-.005.001-.006.002-.005v-.005l.001-.001.001-.005v-.001l.002-.004v-.001a1.112 1.112 0 00.002-.01v-.002l.002-.004.001-.005v-.002l.001-.004v-.001l.002-.005v-.001-.004l.001-.001.001-.005a.131.131 0 01.003-.01v-.002l.001-.004v-.002l.001-.003v-.002l.002-.004v-.002-.003l.001-.002.001-.005v-.002l.001-.002v-.003l.001-.003.001-.003v-.003l.001-.002V10.8l.001-.002.001-.004v-.002l.001-.003v-.002l.002-.004v-.003-.002l.001-.003v-.002l.002-.005v-.002-.002l.001-.002v-.005l.001-.002.001-.003v-.002-.003h.001l.001-.007v-.001l.001-.003v-.002l.002-.005v-.002-.003l.002-.008v-.003l.001-.002.002-.01V10.7v-.004l.002-.007.003-.016c.01-.057.02-.115.027-.173l-1.295-.17z"
|
|
2862
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2863
|
+
fill: "currentColor",
|
|
2864
|
+
d: "M12.741 6.316l-.714 1.093c.71.464 1.225 1.033 1.492 1.647l1.198-.52a4.442 4.442 0 00-.643-1.043 5.081 5.081 0 00-.018-.022l-.004-.004a17.562 17.562 0 00-.015-.018l-.004-.005a4.797 4.797 0 00-.007-.009l-.004-.004a2.821 2.821 0 00-.015-.018l-.004-.004a4.948 4.948 0 00-.007-.009l-.004-.004a4.75 4.75 0 00-.008-.01l-.004-.004-.004-.004a1.755 1.755 0 01-.003-.004l-.004-.005-.004-.004a12.183 12.183 0 00-.003-.004l-.001-.001a4.714 4.714 0 00-.007-.008l-.001-.001-.003-.003v-.001l-.004-.004-.004-.004v-.001l-.004-.003v-.001l-.004-.004v-.001a.855.855 0 00-.003-.003l-.002-.001c0-.002-.002-.003-.003-.004l-.004-.004v-.001l-.003-.003-.001-.001-.003-.004-.001-.001-.003-.003-.001-.001-.003-.003v-.001a1.804 1.804 0 01-.004-.004h-.001l-.003-.004-.001-.001-.003-.003v-.001l-.004-.004-.001-.001-.003-.003v-.001l-.004-.004-.004-.004v-.001l-.004-.003v-.001a1.25 1.25 0 00-.004-.004h-.001c0-.002-.002-.003-.003-.004l-.001-.001a.808.808 0 00-.004-.004l-.003-.004a.921.921 0 00-.004-.004l-.004-.004v-.001l-.004-.003-.001-.002-.003-.002v-.002c-.002 0-.003-.002-.004-.003l-.001-.001-.003-.003a.307.307 0 01-.004-.005 2.048 2.048 0 01-.006-.005l-.002-.003-.001-.001-.003-.003-.001-.001-.003-.004-.002-.001-.002-.003-.002-.001-.003-.003-.001-.002-.002-.002-.002-.002-.002-.002-.002-.002a1.184 1.184 0 01-.003-.003l-.002-.002-.002-.002a.356.356 0 00-.003-.004l-.002-.002-.003-.003-.002-.001-.002-.003-.001-.001-.003-.003-.002-.002-.002-.002-.002-.002-.002-.002-.002-.002a1.177 1.177 0 00-.003-.003l-.002-.002-.002-.002-.002-.002-.001-.002c-.001 0-.002 0-.002-.002l-.003-.003-.002-.002-.002-.002-.002-.001-.002-.002-.003-.003-.002-.002-.002-.002-.002-.002a.37.37 0 00-.001-.002l-.003-.002-.002-.003-.002-.002-.002-.002-.002-.002-.002-.001-.003-.004-.002-.001-.002-.002-.002-.002-.002-.002-.002-.003-.003-.002-.002-.002-.001-.002-.002-.001-.003-.003a.66.66 0 00-.002-.002l-.002-.002-.002-.002-.002-.002-.002-.002-.003-.003-.002-.002-.002-.002-.002-.002-.001-.001-.005-.004v-.001l-.003-.003h-.001l-.003-.003a.222.222 0 00-.005-.005l-.001-.002-.003-.002-.001-.001a.5.5 0 00-.004-.004l-.003-.003-.002-.002-.002-.002-.002-.002-.002-.002-.003-.003c-.001 0-.002 0-.002-.002l-.002-.001-.002-.002-.002-.002a1.175 1.175 0 01-.005-.005l-.002-.002-.002-.002-.002-.002L13.613 7l-.003-.002-.002-.002-.002-.002-.002-.002-.002-.002-.002-.002-.003-.003-.002-.001-.002-.002a.42.42 0 01-.007-.007l-.002-.002-.002-.002-.002-.001-.003-.003-.002-.002-.002-.002-.002-.002-.002-.002a.378.378 0 00-.007-.006l-.003-.002-.001-.002-.003-.002-.001-.002-.004-.003a.298.298 0 00-.006-.005l-.002-.003-.002-.001-.003-.003-.002-.002-.002-.002-.002-.001-.003-.003-.002-.002-.002-.002-.002-.002-.003-.002-.001-.001a1.366 1.366 0 00-.005-.005l-.003-.002-.001-.002-.004-.003-.004-.004a.215.215 0 01-.004-.003l-.002-.002-.003-.003-.002-.001-.002-.003h-.002c0-.002-.002-.003-.003-.003l-.001-.001-.004-.004-.004-.004h-.001a1.435 1.435 0 01-.004-.004l-.005-.004-.004-.004-.005-.004-.004-.004h-.001l-.003-.004a.141.141 0 00-.006-.004l-.004-.004-.005-.004-.004-.004h-.001l-.004-.004a5.38 5.38 0 00-.009-.008l-.004-.004h-.001l-.005-.004-.004-.004a.086.086 0 01-.004-.004h-.001l-.004-.004h-.001a1.617 1.617 0 01-.004-.004l-.005-.004-.004-.004-.005-.004-.01-.007v-.001l-.004-.004-.005-.004-.004-.003-.01-.008-.004-.004a6.001 6.001 0 00-.023-.02h-.001a6.42 6.42 0 00-.57-.417z"
|
|
2865
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
2866
|
+
fill: "currentColor",
|
|
2867
|
+
d: "M8 1a3.532 3.532 0 00-3.57 3.57c0 .573.21 1.23.642 2.008.251.452.576.943.968 1.458.315.415.67.842 1.057 1.273l.484.516c.111.113.26.175.419.175h.001c.16 0 .308-.063.42-.177l.135-.14A19.587 19.587 0 009.96 8.037c.392-.515.717-1.006.968-1.458.431-.779.641-1.435.641-2.009A3.532 3.532 0 008 1zm2.388 3.57c0 .355-.171.852-.493 1.435-.223.4-.517.844-.876 1.316-.304.4-.638.802-.992 1.194L8 8.545l-.026-.03c-.36-.4-.695-.801-.993-1.194-.359-.472-.653-.915-.876-1.316-.322-.582-.492-1.078-.492-1.436C5.613 3.23 6.661 2.182 8 2.182s2.388 1.048 2.388 2.387z"
|
|
2868
|
+
}), /*#__PURE__*/createElement(Circle, {
|
|
2869
|
+
cx: 8,
|
|
2870
|
+
cy: 4.579,
|
|
2871
|
+
r: 0.991,
|
|
2872
|
+
fill: "currentColor",
|
|
2873
|
+
fillRule: "evenodd",
|
|
2874
|
+
clipRule: "evenodd"
|
|
2875
|
+
}));
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2757
2878
|
function AccessibilityIcon(props) {
|
|
2758
2879
|
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
2759
2880
|
viewBox: "0 0 16 16",
|
|
@@ -3008,6 +3129,21 @@ function CloseIcon(props) {
|
|
|
3008
3129
|
}));
|
|
3009
3130
|
}
|
|
3010
3131
|
|
|
3132
|
+
function CloseSmallIcon(props) {
|
|
3133
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
3134
|
+
viewBox: "0 0 16 16",
|
|
3135
|
+
width: props.width || props.size || 16,
|
|
3136
|
+
height: props.height || props.size || 16,
|
|
3137
|
+
color: props.color || '#181C56'
|
|
3138
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
3139
|
+
fill: "currentColor",
|
|
3140
|
+
d: "M3.004 3.934l.93-.93 9.07 9.069-.93.93z"
|
|
3141
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
3142
|
+
fill: "currentColor",
|
|
3143
|
+
d: "M3.004 12.073l9.07-9.07.93.93-9.069 9.07z"
|
|
3144
|
+
}));
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3011
3147
|
function ColorPickerIcon(props) {
|
|
3012
3148
|
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
3013
3149
|
viewBox: "0 0 16 16",
|
|
@@ -3755,6 +3891,78 @@ function UsersIcon(props) {
|
|
|
3755
3891
|
}));
|
|
3756
3892
|
}
|
|
3757
3893
|
|
|
3894
|
+
function OutlinedValidationCheckIcon(props) {
|
|
3895
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
3896
|
+
viewBox: "0 0 16 16",
|
|
3897
|
+
width: props.width || props.size || 16,
|
|
3898
|
+
height: props.height || props.size || 16,
|
|
3899
|
+
color: props.color || '#181C56'
|
|
3900
|
+
}), /*#__PURE__*/createElement(G, {
|
|
3901
|
+
fill: "currentColor",
|
|
3902
|
+
fillRule: "evenodd",
|
|
3903
|
+
clipRule: "evenodd"
|
|
3904
|
+
}, /*#__PURE__*/createElement(Path, {
|
|
3905
|
+
d: "M8 1a7 7 0 100 14A7 7 0 008 1zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
3906
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
3907
|
+
d: "M6.82 9.386L4.917 7.43 4 8.375l2.36 2.43.081.07c.254.188.61.164.838-.07L12 5.944 11.082 5 6.819 9.386z"
|
|
3908
|
+
})));
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
function OutlinedValidationErrorIcon(props) {
|
|
3912
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
3913
|
+
viewBox: "0 0 16 16",
|
|
3914
|
+
width: props.width || props.size || 16,
|
|
3915
|
+
height: props.height || props.size || 16,
|
|
3916
|
+
color: props.color || '#181C56'
|
|
3917
|
+
}), /*#__PURE__*/createElement(G, {
|
|
3918
|
+
fill: "currentColor",
|
|
3919
|
+
fillRule: "evenodd",
|
|
3920
|
+
clipRule: "evenodd"
|
|
3921
|
+
}, /*#__PURE__*/createElement(Path, {
|
|
3922
|
+
d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
3923
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
3924
|
+
d: "M10.05 4.96L8 7.01 5.95 4.96l-.99.99L7.01 8l-2.05 2.05.99.99L8 8.989l2.05 2.051.99-.99L8.989 8l2.051-2.05z"
|
|
3925
|
+
})));
|
|
3926
|
+
}
|
|
3927
|
+
|
|
3928
|
+
function OutlinedValidationExclamationIcon(props) {
|
|
3929
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
3930
|
+
viewBox: "0 0 16 16",
|
|
3931
|
+
width: props.width || props.size || 16,
|
|
3932
|
+
height: props.height || props.size || 16,
|
|
3933
|
+
color: props.color || '#181C56'
|
|
3934
|
+
}), /*#__PURE__*/createElement(G, {
|
|
3935
|
+
fill: "currentColor"
|
|
3936
|
+
}, /*#__PURE__*/createElement(Path, {
|
|
3937
|
+
d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
3938
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
3939
|
+
d: "M7.3 4h1.4v5.1H7.3z"
|
|
3940
|
+
}), /*#__PURE__*/createElement(Circle, {
|
|
3941
|
+
cx: 8.005,
|
|
3942
|
+
cy: 11.375,
|
|
3943
|
+
r: 0.875
|
|
3944
|
+
})));
|
|
3945
|
+
}
|
|
3946
|
+
|
|
3947
|
+
function OutlinedValidationInfoIcon(props) {
|
|
3948
|
+
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
3949
|
+
viewBox: "0 0 16 16",
|
|
3950
|
+
width: props.width || props.size || 16,
|
|
3951
|
+
height: props.height || props.size || 16,
|
|
3952
|
+
color: props.color || '#181C56'
|
|
3953
|
+
}), /*#__PURE__*/createElement(G, {
|
|
3954
|
+
fill: "currentColor"
|
|
3955
|
+
}, /*#__PURE__*/createElement(Path, {
|
|
3956
|
+
d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
3957
|
+
}), /*#__PURE__*/createElement(Circle, {
|
|
3958
|
+
cx: 8.005,
|
|
3959
|
+
cy: 4.875,
|
|
3960
|
+
r: 0.875
|
|
3961
|
+
}), /*#__PURE__*/createElement(Path, {
|
|
3962
|
+
d: "M8.7 7.5l-.006-.095A.7.7 0 008 6.8H6.3v1.4h1v2.418h-1v1.4h3.4v-1.4H8.699L8.7 7.5z"
|
|
3963
|
+
})));
|
|
3964
|
+
}
|
|
3965
|
+
|
|
3758
3966
|
function ValidationCheckIcon(props) {
|
|
3759
3967
|
return /*#__PURE__*/createElement(Svg, _extends({}, props, {
|
|
3760
3968
|
viewBox: "0 0 14 14",
|
|
@@ -4106,4 +4314,4 @@ function ZoomOutIcon(props) {
|
|
|
4106
4314
|
}));
|
|
4107
4315
|
}
|
|
4108
4316
|
|
|
4109
|
-
export { AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AnimalFreeIcon, AnimalIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CablewayIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckIcon, CityIcon, ClockIcon, CloseIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FerryIcon, FileIcon, ForwardIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LuggageIcon, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MinimizeIcon, MobileIcon, MoneyIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlayroomIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, SJIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UnlinkIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketIcon, ValidationCheckIcon, ValidationErrorIcon, ValidationExclamationIcon, ValidationInfoIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkingIcon, WarningIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoomInIcon, ZoomOutIcon };
|
|
4317
|
+
export { AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AnimalFreeIcon, AnimalIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CablewayIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckIcon, CityIcon, ClockIcon, CloseIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CorrespondenceIcon, CouchetteIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FerryIcon, FileIcon, ForwardIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LuggageIcon, MapIcon, MapPinIcon, MastercardIcon, MenuIcon, MergeProfilesIcon, MinimizeIcon, MobileIcon, MoneyIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlayroomIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, SJIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchIcon, SeatIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UnlinkIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketIcon, ValidationCheckIcon, ValidationErrorIcon, ValidationExclamationIcon, ValidationInfoIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkingIcon, WarningIcon, WaterTapIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoneIcon, ZoomInIcon, ZoomOutIcon, ZvippIcon };
|
package/dist/index.js
CHANGED
|
@@ -299,24 +299,21 @@ function ShareIcon(props) {
|
|
|
299
299
|
|
|
300
300
|
function SwitchIcon(props) {
|
|
301
301
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
302
|
-
id: "Layer_1",
|
|
303
|
-
x: 0,
|
|
304
|
-
y: 0,
|
|
305
302
|
viewBox: "0 0 16 16",
|
|
306
|
-
xmlSpace: "preserve",
|
|
307
303
|
width: props.width || props.size || '1em',
|
|
308
304
|
height: props.height || props.size || '1em',
|
|
309
305
|
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
310
306
|
inline: undefined,
|
|
311
307
|
color: props.color || 'currentColor'
|
|
308
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
309
|
+
fill: "currentColor",
|
|
310
|
+
fillRule: "evenodd",
|
|
311
|
+
clipRule: "evenodd"
|
|
312
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
313
|
+
d: "M12.321 14.2l-.899-.9 1.5-1.5h-8.6v-1.3h8.6l-1.5-1.5.9-.9 2.5 2.5c.2.2.2.6.1.8l-.1.1-2.5 2.7z"
|
|
312
314
|
}), /*#__PURE__*/React.createElement("path", {
|
|
313
|
-
d: "
|
|
314
|
-
|
|
315
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
316
|
-
id: "Icon-Fill",
|
|
317
|
-
d: "M3.7 1.8l.9.9-1.4 1.5h8.6v1.3H3.2L4.7 7l-1 .8-2.5-2.6c-.2-.2-.3-.5-.1-.8l.1-.1 2.5-2.5z",
|
|
318
|
-
className: "st0"
|
|
319
|
-
}));
|
|
315
|
+
d: "M3.722 1.8l.9.9-1.4 1.5h8.6v1.3h-8.6l1.5 1.5-1 .8-2.5-2.6c-.2-.2-.3-.5-.1-.8l.1-.1 2.5-2.5z"
|
|
316
|
+
})));
|
|
320
317
|
}
|
|
321
318
|
|
|
322
319
|
function ToFromIcon(props) {
|
|
@@ -577,6 +574,22 @@ function CoffeeIcon(props) {
|
|
|
577
574
|
}));
|
|
578
575
|
}
|
|
579
576
|
|
|
577
|
+
function CouchetteIcon(props) {
|
|
578
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
579
|
+
viewBox: "0 0 16 16",
|
|
580
|
+
width: props.width || props.size || '1em',
|
|
581
|
+
height: props.height || props.size || '1em',
|
|
582
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
583
|
+
inline: undefined,
|
|
584
|
+
color: props.color || 'currentColor'
|
|
585
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
586
|
+
fill: "currentColor",
|
|
587
|
+
fillRule: "evenodd",
|
|
588
|
+
d: "M14.897 7.756a.632.632 0 00-.626-.547h-.09V4.248a.685.685 0 00-.684-.685h-3.374a.798.798 0 00-.382.107 1.09 1.09 0 00-.46-.107H6.622c-.166 0-.32.042-.462.107a.799.799 0 00-.383-.107H2.406a.686.686 0 00-.685.685v2.961h-.089a.632.632 0 00-.626.547L1 7.84v4.596h1.264v-1.666H13.639v1.666h1.265V7.841l-.006-.085zM13.096 4.65v2.56H10.39V4.65h2.706zm-3.792.023V7.21H6.603l.02-2.56 2.68.024zM2.808 4.65h2.704v2.559H2.807V4.65zm10.83 4.857H2.265l-.001-1.034h11.375l-.001 1.034z",
|
|
589
|
+
clipRule: "evenodd"
|
|
590
|
+
}));
|
|
591
|
+
}
|
|
592
|
+
|
|
580
593
|
function CutleryIcon(props) {
|
|
581
594
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
582
595
|
viewBox: "0 0 16 16",
|
|
@@ -831,6 +844,27 @@ function WaitingRoomIcon(props) {
|
|
|
831
844
|
}));
|
|
832
845
|
}
|
|
833
846
|
|
|
847
|
+
function WaterTapIcon(props) {
|
|
848
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
849
|
+
viewBox: "0 0 16 16",
|
|
850
|
+
width: props.width || props.size || '1em',
|
|
851
|
+
height: props.height || props.size || '1em',
|
|
852
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
853
|
+
inline: undefined,
|
|
854
|
+
color: props.color || 'currentColor'
|
|
855
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
856
|
+
fill: "currentColor",
|
|
857
|
+
fillRule: "evenodd",
|
|
858
|
+
d: "M6.739 1h5.512v1.315H6.74V1z",
|
|
859
|
+
clipRule: "evenodd"
|
|
860
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
861
|
+
fill: "currentColor",
|
|
862
|
+
fillRule: "evenodd",
|
|
863
|
+
d: "M8.844 4.246h-2.45c-1.83 0-3.242 1.578-3.242 3.434H4.46c0-1.21.905-2.119 1.934-2.119H14.4V4.246h-4.248V2.128H8.844v2.118zM4.291 9.459l-.485.442-.484-.442a.652.652 0 01.969 0zm-.485 1.479a9.529 9.529 0 00-.239.33 5.89 5.89 0 00-.48.81c-.13.278-.179.479-.179.599 0 .674.466 1.008.898 1.008s.899-.334.899-1.008c0-.12-.05-.321-.18-.598a5.89 5.89 0 00-.48-.81 9.529 9.529 0 00-.239-.331zm0-1.037l-.484-.442-.002.002-.005.005-.015.017a7.37 7.37 0 00-.241.285c-.153.187-.359.45-.566.75a7.191 7.191 0 00-.588.999c-.16.342-.305.752-.305 1.16C1.6 14.112 2.687 15 3.806 15c1.12 0 2.207-.888 2.207-2.323 0-.408-.145-.818-.305-1.16a7.191 7.191 0 00-.588-1 11.711 11.711 0 00-.807-1.034l-.016-.017-.004-.005-.001-.001-.001-.001-.485.442z",
|
|
864
|
+
clipRule: "evenodd"
|
|
865
|
+
}));
|
|
866
|
+
}
|
|
867
|
+
|
|
834
868
|
function WheelchairIcon(props) {
|
|
835
869
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
836
870
|
viewBox: "0 0 16 16",
|
|
@@ -1592,6 +1626,38 @@ function VyIcon(props) {
|
|
|
1592
1626
|
}));
|
|
1593
1627
|
}
|
|
1594
1628
|
|
|
1629
|
+
function ZvippIcon(props) {
|
|
1630
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
1631
|
+
viewBox: "0 0 16 16",
|
|
1632
|
+
width: props.width || props.size || '1em',
|
|
1633
|
+
height: props.height || props.size || '1em',
|
|
1634
|
+
className: 'eds-icon__ZvippIcon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
1635
|
+
inline: undefined,
|
|
1636
|
+
color: props.color || 'currentColor'
|
|
1637
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("path", {
|
|
1638
|
+
id: "a",
|
|
1639
|
+
d: "M14.783 5.275l-2.709-2.364H4.023L1 5.511l6.755 7.673z"
|
|
1640
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
1641
|
+
id: "b"
|
|
1642
|
+
}, /*#__PURE__*/React.createElement("use", {
|
|
1643
|
+
overflow: "visible",
|
|
1644
|
+
xlinkHref: "#a"
|
|
1645
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1646
|
+
fill: "#FFD600",
|
|
1647
|
+
clipPath: "url(#b)"
|
|
1648
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1649
|
+
d: "M4.132 5.149l4.611 7.555.471-.457-4.315-6.601z"
|
|
1650
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1651
|
+
d: "M12.731 7.448L8.229 2.542l-2.31.004 2.536 3.097h-.432L5.476 2.54l-.746.004.524 3.099 4.165 6.337 1.142-1.623z"
|
|
1652
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
1653
|
+
fill: "#009D48"
|
|
1654
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
1655
|
+
d: "M4.601 5.646h.298l.355-.003h2.457L5.192 2.58H3.963L1 5.511l6.972 7.909.989-1.113z"
|
|
1656
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
1657
|
+
d: "M12.232 7.448H8.59l1.987 3.041L15 5.511 12.014 2.58H8.26z"
|
|
1658
|
+
})));
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1595
1661
|
function BanknoteIcon(props) {
|
|
1596
1662
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
1597
1663
|
viewBox: "0 0 16 16",
|
|
@@ -2816,6 +2882,32 @@ function CityIcon(props) {
|
|
|
2816
2882
|
}));
|
|
2817
2883
|
}
|
|
2818
2884
|
|
|
2885
|
+
function CorrespondenceIcon(props) {
|
|
2886
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
2887
|
+
viewBox: "0 0 16 16",
|
|
2888
|
+
width: props.width || props.size || '1em',
|
|
2889
|
+
height: props.height || props.size || '1em',
|
|
2890
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
2891
|
+
inline: undefined,
|
|
2892
|
+
color: props.color || 'currentColor'
|
|
2893
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2894
|
+
fill: "currentColor",
|
|
2895
|
+
fillRule: "evenodd",
|
|
2896
|
+
d: "M5.943 2.5L5 3.443l4.291 4.29L5 12.023l.943.944 4.762-4.762a.667.667 0 00.07-.86l-.07-.083L5.943 2.5z",
|
|
2897
|
+
clipRule: "evenodd"
|
|
2898
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2899
|
+
fill: "currentColor",
|
|
2900
|
+
fillRule: "evenodd",
|
|
2901
|
+
d: "M10.043 2.5l-.943.943 4.291 4.29-4.291 4.29.943.944 4.762-4.762a.667.667 0 00.07-.86l-.07-.083L10.043 2.5z",
|
|
2902
|
+
clipRule: "evenodd"
|
|
2903
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
2904
|
+
fill: "currentColor",
|
|
2905
|
+
fillRule: "evenodd",
|
|
2906
|
+
d: "M1.943 2.5L1 3.443l4.291 4.29L1 12.023l.943.944 4.762-4.762a.667.667 0 00.07-.86l-.07-.083L1.943 2.5z",
|
|
2907
|
+
clipRule: "evenodd"
|
|
2908
|
+
}));
|
|
2909
|
+
}
|
|
2910
|
+
|
|
2819
2911
|
function DestinationIcon(props) {
|
|
2820
2912
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
2821
2913
|
viewBox: "0 0 12 14",
|
|
@@ -3085,6 +3177,45 @@ function ValidTicketIcon(props) {
|
|
|
3085
3177
|
}));
|
|
3086
3178
|
}
|
|
3087
3179
|
|
|
3180
|
+
function ZoneIcon(props) {
|
|
3181
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
3182
|
+
viewBox: "0 0 16 16",
|
|
3183
|
+
width: props.width || props.size || '1em',
|
|
3184
|
+
height: props.height || props.size || '1em',
|
|
3185
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
3186
|
+
inline: undefined,
|
|
3187
|
+
color: props.color || 'currentColor'
|
|
3188
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3189
|
+
fill: "currentColor",
|
|
3190
|
+
d: "M3.226 6.335c-.174.114-.34.235-.496.361a6.113 6.113 0 00-.062.05v.001l-.005.004-.01.008a5.595 5.595 0 00-.009.008l-.004.003a5.165 5.165 0 00-.01.008l-.004.004-.005.004-.005.004-.004.004-.005.004-.004.004h-.001l-.009.008-.004.004h-.001l-.004.004-.004.004h-.002c0 .002-.002.003-.003.004l-.005.004-.004.004h-.001a1.762 1.762 0 01-.004.004l-.005.004-.004.003-.001.002c-.002 0-.003.002-.004.003l-.004.004H2.54a.173.173 0 00-.004.004l-.004.004-.001.001-.003.003h-.001l-.003.003-.001.001-.004.004-.002.001-.002.002-.002.002-.003.003-.002.001-.002.003-.002.001-.003.002-.001.002c-.002 0-.003.002-.004.003l-.002.002-.002.002-.002.001-.002.003-.002.001-.003.003a.423.423 0 00-.004.004l-.002.001-.002.002-.003.003-.003.002a.451.451 0 00-.004.004l-.001.001-.004.003-.002.002-.002.002-.002.002a.3.3 0 00-.006.006l-.003.003h-.002c0 .002-.001.002-.002.003l-.001.001-.005.004-.001.001-.003.003a5.414 5.414 0 00-.01.009l-.003.003-.006.006-.003.003h-.001l-.003.003-.006.006-.003.003-.01.009-.003.003a5.725 5.725 0 00-.02.018l-.002.003h-.001l-.009.01-.003.002a4.668 4.668 0 00-1.084 1.536l1.203.51c.26-.615.771-1.186 1.477-1.652l-.72-1.09z"
|
|
3191
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3192
|
+
fill: "currentColor",
|
|
3193
|
+
d: "M2.293 10.352L1 10.535a3.665 3.665 0 00.054.294l.006.027.003.012.004.016.002.011.003.012.003.011.001.004.003.012.003.011.003.012.001.004.003.011a5.234 5.234 0 00.006.023l.001.004.002.008.002.003v.001a4.794 4.794 0 00.006.022v.001l.001.003v.001l.002.007.001.004.004.011v.001l.003.01v.001l.001.004.003.007v.004h.001l.003.011v.001l.004.01v.005h.001a2.172 2.172 0 00.002.008l.001.003v.001l.004.01v.001l.004.01v.005h.001l.002.007.002.004a1.444 1.444 0 01.003.011v.001l.004.01v.001l.001.004.004.011.004.011v.001l.004.01v.001l.001.004.003.007v.004h.001a4.825 4.825 0 00.004.012l.004.01v.001l.001.003v.001l.003.007.001.003v.002l.004.01.002.004.002.007.002.004v.001l.002.006.002.004v.001l.004.01v.001l.004.01v.001l.002.003v.002l.003.006.001.004.004.01v.002l.002.003c0 .003.002.005.003.007l.001.004a.076.076 0 00.003.007l.001.004.001.001.004.01v.001l.002.003.002.007v.001l.002.003v.001a1.922 1.922 0 00.003.007l.001.003v.001l.005.01v.001l.002.003v.001l.002.006v.001l.002.003v.002l.003.005v.001l.002.003v.001a4.3 4.3 0 00.005.011l.001.003.003.007v.001l.002.003v.002l.003.005v.001l.001.003v.002l.005.009v.002l.002.002v.002l.003.005v.001l.002.003v.001l.002.006.001.001.001.003a.115.115 0 00.005.01v.002l.002.003.003.007v.001l.002.003v.001l.003.006.002.004v.001l.005.01.002.004.003.006a.106.106 0 00.002.005l.003.006v.002l.002.002v.002l.005.01.005.01v.001l.002.003v.002l.003.005v.001l.002.003v.001l.005.01a.132.132 0 01.002.004l.003.006v.002l.002.003.003.006.001.001.001.003.001.002.005.009v.001l.002.003c0 .003.002.005.003.007v.001l.002.003v.001l.003.005v.002l.002.002.001.002.003.006.002.003v.002l.002.002v.001l.003.006v.001l.002.003v.001l.004.005v.002a.462.462 0 01.002.004l.003.006.002.003v.002l.006.009v.001l.002.003v.001l.003.006.002.004h.001l.003.007.002.003v.002l.002.002v.001l.004.006v.001l.002.003v.001l.003.005.001.002.001.003h.001l.003.007.002.003a.145.145 0 01.007.012.534.534 0 00.005.009v.001l.002.003v.002l.006.009v.001l.006.01c0 .002.001.002.002.003v.001l.004.006v.001l.002.003v.001l.006.01.006.01v.001l.002.003v.001l.004.006.002.003v.001l.006.01v.001l.006.01.002.003.001.001.003.006a.484.484 0 00.003.005l.003.005.001.001.001.003.002.002.001.002a.193.193 0 00.004.006v.002a.544.544 0 00.003.004l.003.005v.001l.002.003.001.001.004.006.002.003v.001l.006.01.002.004h.001l.003.006.001.001.002.003v.001l.006.01c.003.003.005.007.006.01h.001a.541.541 0 00.006.01l.003.004.006.01v.001l.006.01h.001c0 .002.001.002.002.003v.001l.004.006.002.004h.001l.006.01v.001l.007.01.002.003.004.007.003.003v.001l.007.01a4.58 4.58 0 00.007.01l.002.004.004.006.003.004.006.01a2.872 2.872 0 00.008.011l.002.003.004.007.003.003v.001l.007.01.007.01.007.01.002.004.007.01a5.196 5.196 0 00.01.014l.004.006.003.004.007.01a2.931 2.931 0 00.008.01l.006.01a.043.043 0 01.003.003v.001l.007.01.008.01a.775.775 0 01.002.003l.005.007.003.003.007.01.007.01a4.832 4.832 0 00.025.034l.008.01.003.003.007.01.008.01.008.01.01.014.008.01c.175.225.374.439.595.64l.882-.962c-.588-.54-.946-1.16-1.036-1.796z"
|
|
3194
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3195
|
+
fill: "currentColor",
|
|
3196
|
+
d: "M4.675 13.035l-.559 1.18a8.37 8.37 0 00.87.351l.03.01.004.002h.001l.004.002h.001a8.47 8.47 0 00.029.01h.004v.001l.005.001.005.002.024.008.005.001.004.002h.002l.004.002.005.001.024.008.004.001h.002l.003.002h.002l.004.002.005.001.018.006h.002l.003.002h.002l.003.001h.002l.003.002h.002l.004.001.001.001.004.001h.002a6.774 6.774 0 00.016.006h.002l.003.001.003.001h.002l.003.002h.002l.003.001.003.001.003.001h.002l.005.002.006.002.005.001.002.001.003.001h.002l.003.002h.003l.003.001h.002l.003.002h.002l.004.002h.001a2.323 2.323 0 00.008.002l.003.001h.002l.003.002h.003l.003.001.002.001h.003l.002.002h.004l.002.001.003.001h.002l.01.004h.002l.004.001h.002l.003.002h.002l.004.001.002.001a4.994 4.994 0 00.005.002h.004l.001.001.005.001.011.004h.002l.004.001h.001l.004.002h.002l.004.001h.001a2.99 2.99 0 00.006.002l.005.002.017.005.005.001h.001l.005.002h.001l.004.001h.001l.005.002.017.005h.001l.005.001h.001l.004.002h.002l.004.001h.001l.005.002.029.008.005.001.006.002c.472.126.967.217 1.48.268l.13-1.3a7.595 7.595 0 01-2.467-.665z"
|
|
3197
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3198
|
+
fill: "currentColor",
|
|
3199
|
+
d: "M11.346 13.023c-.73.35-1.582.583-2.463.674l.135 1.3h.004l.003-.001a3.627 3.627 0 00.011-.001h.002l.004-.001h.008l.004-.001h.006l.002-.001h.006l.005-.001a.338.338 0 01.013-.002h.001a6.905 6.905 0 01.007 0l.003-.001h.006l.003-.001h.006l.003-.001h.007l.001-.001h.008l.004-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001a.638.638 0 00.006 0l.002-.001h.005l.006-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001h.002l.003-.001h.006l.004-.001h.004l.002-.001h.006l.004-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001h.002l.005-.001h.002l.004-.001h.006l.002-.001h.006l.004-.001h.002l.004-.001h.002l.004-.001h.002l.011-.002h.008l.004-.001h.002l.004-.001h.002l.004-.001h.006l.002-.001.011-.002h.008l.004-.001h.002l.004-.001h.002l.004-.001h.006l.001-.001h.006l.012-.003h.008l.004-.001h.001l.005-.001h.001a6.885 6.885 0 00.01-.002h.002l.012-.002h.005l.002-.001h.006l.004-.002h.008a4.103 4.103 0 00.005-.002h.006l.012-.002.006-.001h.001l.005-.001h.002l.004-.001h.006l.001-.001.005-.001.019-.003h.005l.001-.001h.005l.002-.001h.005l.005-.002h.001a8.732 8.732 0 00.03-.005h.007l.004-.002h.007l.018-.004h.006l.001-.001h.005v-.001h.005l.002-.001.005-.001a2.921 2.921 0 00.024-.004l.006-.001.006-.001.005-.001h.002l.005-.001.018-.004h.006l.006-.002h.006l.006-.002.024-.004.006-.001.006-.002.03-.005.005-.001h.001l.005-.001.006-.002.036-.007a8.85 8.85 0 001.305-.36l.005-.002.005-.002.022-.008a17.301 17.301 0 00.01-.003h.001l.005-.002.005-.002h.001l.016-.007.005-.001.001-.001.004-.001h.001a1.621 1.621 0 00.01-.004l.005-.002a8.232 8.232 0 00.017-.007l.004-.001.002-.001.003-.001.002-.001.003-.001h.002l.004-.002a.449.449 0 01.005-.002h.001a5.7 5.7 0 00.01-.005h.002l.004-.002h.001l.004-.002h.002l.003-.001.002-.001.003-.001.002-.001.003-.002h.002l.004-.002.006-.002h.001l.004-.002h.002l.003-.002h.002l.003-.002h.002l.003-.002h.002l.003-.002h.002l.003-.002h.002l.002-.002.006-.002h.002l.002-.002h.003l.002-.002h.002l.003-.002h.002l.004-.002h.001l.003-.001.002-.001.003-.002.014-.005.004-.002h.001l.004-.002.005-.002.005-.001.027-.012.005-.002c.002 0 .003 0 .004-.002.141-.057.278-.118.412-.182l-.564-1.178z"
|
|
3200
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3201
|
+
fill: "currentColor",
|
|
3202
|
+
d: "M13.705 10.33c-.084.636-.436 1.259-1.02 1.8l.889.957a5.4 5.4 0 00.439-.456v-.001l.01-.013h.001l.008-.01.008-.01.011-.012a28.835 28.835 0 00.008-.01l.008-.01.008-.01.003-.003a5.62 5.62 0 00.015-.019l.001-.001.003-.003.004-.006h.001l.002-.004h.001l.005-.006.002-.003v-.001l.008-.009V12.5l.003-.003.004-.006h.001l.002-.003.002-.002.003-.004.001-.002.002-.002.001-.002.003-.003.002-.002c0-.001 0-.002.002-.003v-.001l.003-.003.001-.002.003-.003.001-.002.002-.002a2.87 2.87 0 01.004-.006l.002-.002.002-.002.001-.002.002-.002.002-.004.002-.002.002-.002.001-.002.003-.003.001-.002.002-.003.002-.001.002-.003c0-.001 0-.002.002-.003l.002-.002.001-.002.002-.003.001-.001a1.216 1.216 0 00.006-.008l.002-.002a9.263 9.263 0 00.004-.005c0-.001 0-.002.002-.003a.248.248 0 01.005-.007l.002-.003.001-.002.002-.002.001-.002.003-.004.001-.001.002-.003.002-.002.002-.004.002-.001c0-.001 0-.002.002-.003v-.001l.003-.004.001-.001.003-.004v-.001l.003-.003.001-.002.003-.004.003-.004.001-.001.003-.004v-.002c.002 0 .002-.002.003-.003l.001-.001.003-.004.003-.005h.001a.884.884 0 00.003-.005l.003-.004.001-.002.003-.003v-.001a1.55 1.55 0 01.003-.004l.001-.001.002-.004.001-.001.003-.004a.95.95 0 00.003-.005h.001l.003-.005.003-.005h.001l.003-.004v-.001l.003-.005.003-.004.001-.001.003-.004.003-.005.001-.001.003-.004.003-.005.003-.004v-.001l.004-.005.003-.004v-.001l.007-.01.003-.004.003-.005.001-.001.003-.004.003-.005.003-.005.007-.01a2.74 2.74 0 00.007-.01c0-.002.002-.003.003-.005 0-.002.002-.003.003-.005l.003-.005.007-.01.006-.01.003-.004a4.075 4.075 0 00.496-1.077l.008-.028.003-.011.003-.011.002-.006.001-.005.002-.005c0-.004.002-.008.003-.011v-.001l.003-.01v-.001l.001-.005.002-.005v-.001-.005h.001l.001-.006.002-.005.001-.006.002-.005v-.005l.001-.001.001-.005v-.001l.002-.004v-.001a1.112 1.112 0 00.002-.01v-.002l.002-.004.001-.005v-.002l.001-.004v-.001l.002-.005v-.001-.004l.001-.001.001-.005a.131.131 0 01.003-.01v-.002l.001-.004v-.002l.001-.003v-.002l.002-.004v-.002-.003l.001-.002.001-.005v-.002l.001-.002v-.003l.001-.003.001-.003v-.003l.001-.002V10.8l.001-.002.001-.004v-.002l.001-.003v-.002l.002-.004v-.003-.002l.001-.003v-.002l.002-.005v-.002-.002l.001-.002v-.005l.001-.002.001-.003v-.002-.003h.001l.001-.007v-.001l.001-.003v-.002l.002-.005v-.002-.003l.002-.008v-.003l.001-.002.002-.01V10.7v-.004l.002-.007.003-.016c.01-.057.02-.115.027-.173l-1.295-.17z"
|
|
3203
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3204
|
+
fill: "currentColor",
|
|
3205
|
+
d: "M12.741 6.316l-.714 1.093c.71.464 1.225 1.033 1.492 1.647l1.198-.52a4.442 4.442 0 00-.643-1.043 5.081 5.081 0 00-.018-.022l-.004-.004a17.562 17.562 0 00-.015-.018l-.004-.005a4.797 4.797 0 00-.007-.009l-.004-.004a2.821 2.821 0 00-.015-.018l-.004-.004a4.948 4.948 0 00-.007-.009l-.004-.004a4.75 4.75 0 00-.008-.01l-.004-.004-.004-.004a1.755 1.755 0 01-.003-.004l-.004-.005-.004-.004a12.183 12.183 0 00-.003-.004l-.001-.001a4.714 4.714 0 00-.007-.008l-.001-.001-.003-.003v-.001l-.004-.004-.004-.004v-.001l-.004-.003v-.001l-.004-.004v-.001a.855.855 0 00-.003-.003l-.002-.001c0-.002-.002-.003-.003-.004l-.004-.004v-.001l-.003-.003-.001-.001-.003-.004-.001-.001-.003-.003-.001-.001-.003-.003v-.001a1.804 1.804 0 01-.004-.004h-.001l-.003-.004-.001-.001-.003-.003v-.001l-.004-.004-.001-.001-.003-.003v-.001l-.004-.004-.004-.004v-.001l-.004-.003v-.001a1.25 1.25 0 00-.004-.004h-.001c0-.002-.002-.003-.003-.004l-.001-.001a.808.808 0 00-.004-.004l-.003-.004a.921.921 0 00-.004-.004l-.004-.004v-.001l-.004-.003-.001-.002-.003-.002v-.002c-.002 0-.003-.002-.004-.003l-.001-.001-.003-.003a.307.307 0 01-.004-.005 2.048 2.048 0 01-.006-.005l-.002-.003-.001-.001-.003-.003-.001-.001-.003-.004-.002-.001-.002-.003-.002-.001-.003-.003-.001-.002-.002-.002-.002-.002-.002-.002-.002-.002a1.184 1.184 0 01-.003-.003l-.002-.002-.002-.002a.356.356 0 00-.003-.004l-.002-.002-.003-.003-.002-.001-.002-.003-.001-.001-.003-.003-.002-.002-.002-.002-.002-.002-.002-.002-.002-.002a1.177 1.177 0 00-.003-.003l-.002-.002-.002-.002-.002-.002-.001-.002c-.001 0-.002 0-.002-.002l-.003-.003-.002-.002-.002-.002-.002-.001-.002-.002-.003-.003-.002-.002-.002-.002-.002-.002a.37.37 0 00-.001-.002l-.003-.002-.002-.003-.002-.002-.002-.002-.002-.002-.002-.001-.003-.004-.002-.001-.002-.002-.002-.002-.002-.002-.002-.003-.003-.002-.002-.002-.001-.002-.002-.001-.003-.003a.66.66 0 00-.002-.002l-.002-.002-.002-.002-.002-.002-.002-.002-.003-.003-.002-.002-.002-.002-.002-.002-.001-.001-.005-.004v-.001l-.003-.003h-.001l-.003-.003a.222.222 0 00-.005-.005l-.001-.002-.003-.002-.001-.001a.5.5 0 00-.004-.004l-.003-.003-.002-.002-.002-.002-.002-.002-.002-.002-.003-.003c-.001 0-.002 0-.002-.002l-.002-.001-.002-.002-.002-.002a1.175 1.175 0 01-.005-.005l-.002-.002-.002-.002-.002-.002L13.613 7l-.003-.002-.002-.002-.002-.002-.002-.002-.002-.002-.002-.002-.003-.003-.002-.001-.002-.002a.42.42 0 01-.007-.007l-.002-.002-.002-.002-.002-.001-.003-.003-.002-.002-.002-.002-.002-.002-.002-.002a.378.378 0 00-.007-.006l-.003-.002-.001-.002-.003-.002-.001-.002-.004-.003a.298.298 0 00-.006-.005l-.002-.003-.002-.001-.003-.003-.002-.002-.002-.002-.002-.001-.003-.003-.002-.002-.002-.002-.002-.002-.003-.002-.001-.001a1.366 1.366 0 00-.005-.005l-.003-.002-.001-.002-.004-.003-.004-.004a.215.215 0 01-.004-.003l-.002-.002-.003-.003-.002-.001-.002-.003h-.002c0-.002-.002-.003-.003-.003l-.001-.001-.004-.004-.004-.004h-.001a1.435 1.435 0 01-.004-.004l-.005-.004-.004-.004-.005-.004-.004-.004h-.001l-.003-.004a.141.141 0 00-.006-.004l-.004-.004-.005-.004-.004-.004h-.001l-.004-.004a5.38 5.38 0 00-.009-.008l-.004-.004h-.001l-.005-.004-.004-.004a.086.086 0 01-.004-.004h-.001l-.004-.004h-.001a1.617 1.617 0 01-.004-.004l-.005-.004-.004-.004-.005-.004-.01-.007v-.001l-.004-.004-.005-.004-.004-.003-.01-.008-.004-.004a6.001 6.001 0 00-.023-.02h-.001a6.42 6.42 0 00-.57-.417z"
|
|
3206
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3207
|
+
fill: "currentColor",
|
|
3208
|
+
d: "M8 1a3.532 3.532 0 00-3.57 3.57c0 .573.21 1.23.642 2.008.251.452.576.943.968 1.458.315.415.67.842 1.057 1.273l.484.516c.111.113.26.175.419.175h.001c.16 0 .308-.063.42-.177l.135-.14A19.587 19.587 0 009.96 8.037c.392-.515.717-1.006.968-1.458.431-.779.641-1.435.641-2.009A3.532 3.532 0 008 1zm2.388 3.57c0 .355-.171.852-.493 1.435-.223.4-.517.844-.876 1.316-.304.4-.638.802-.992 1.194L8 8.545l-.026-.03c-.36-.4-.695-.801-.993-1.194-.359-.472-.653-.915-.876-1.316-.322-.582-.492-1.078-.492-1.436C5.613 3.23 6.661 2.182 8 2.182s2.388 1.048 2.388 2.387z"
|
|
3209
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
3210
|
+
cx: 8,
|
|
3211
|
+
cy: 4.579,
|
|
3212
|
+
r: 0.991,
|
|
3213
|
+
fill: "currentColor",
|
|
3214
|
+
fillRule: "evenodd",
|
|
3215
|
+
clipRule: "evenodd"
|
|
3216
|
+
}));
|
|
3217
|
+
}
|
|
3218
|
+
|
|
3088
3219
|
function AccessibilityIcon(props) {
|
|
3089
3220
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
3090
3221
|
viewBox: "0 0 16 16",
|
|
@@ -3375,6 +3506,23 @@ function CloseIcon(props) {
|
|
|
3375
3506
|
}));
|
|
3376
3507
|
}
|
|
3377
3508
|
|
|
3509
|
+
function CloseSmallIcon(props) {
|
|
3510
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
3511
|
+
viewBox: "0 0 16 16",
|
|
3512
|
+
width: props.width || props.size || '1em',
|
|
3513
|
+
height: props.height || props.size || '1em',
|
|
3514
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
3515
|
+
inline: undefined,
|
|
3516
|
+
color: props.color || 'currentColor'
|
|
3517
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3518
|
+
fill: "currentColor",
|
|
3519
|
+
d: "M3.004 3.934l.93-.93 9.07 9.069-.93.93z"
|
|
3520
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
3521
|
+
fill: "currentColor",
|
|
3522
|
+
d: "M3.004 12.073l9.07-9.07.93.93-9.069 9.07z"
|
|
3523
|
+
}));
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3378
3526
|
function ColorPickerIcon(props) {
|
|
3379
3527
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
3380
3528
|
viewBox: "0 0 16 16",
|
|
@@ -4224,6 +4372,86 @@ function UsersIcon(props) {
|
|
|
4224
4372
|
}));
|
|
4225
4373
|
}
|
|
4226
4374
|
|
|
4375
|
+
function OutlinedValidationCheckIcon(props) {
|
|
4376
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
4377
|
+
viewBox: "0 0 16 16",
|
|
4378
|
+
width: props.width || props.size || '1em',
|
|
4379
|
+
height: props.height || props.size || '1em',
|
|
4380
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
4381
|
+
inline: undefined,
|
|
4382
|
+
color: props.color || 'currentColor'
|
|
4383
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4384
|
+
fill: "currentColor",
|
|
4385
|
+
fillRule: "evenodd",
|
|
4386
|
+
clipRule: "evenodd"
|
|
4387
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4388
|
+
d: "M8 1a7 7 0 100 14A7 7 0 008 1zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
4389
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4390
|
+
d: "M6.82 9.386L4.917 7.43 4 8.375l2.36 2.43.081.07c.254.188.61.164.838-.07L12 5.944 11.082 5 6.819 9.386z"
|
|
4391
|
+
})));
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
function OutlinedValidationErrorIcon(props) {
|
|
4395
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
4396
|
+
viewBox: "0 0 16 16",
|
|
4397
|
+
width: props.width || props.size || '1em',
|
|
4398
|
+
height: props.height || props.size || '1em',
|
|
4399
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
4400
|
+
inline: undefined,
|
|
4401
|
+
color: props.color || 'currentColor'
|
|
4402
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4403
|
+
fill: "currentColor",
|
|
4404
|
+
fillRule: "evenodd",
|
|
4405
|
+
clipRule: "evenodd"
|
|
4406
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4407
|
+
d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
4408
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4409
|
+
d: "M10.05 4.96L8 7.01 5.95 4.96l-.99.99L7.01 8l-2.05 2.05.99.99L8 8.989l2.05 2.051.99-.99L8.989 8l2.051-2.05z"
|
|
4410
|
+
})));
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4413
|
+
function OutlinedValidationExclamationIcon(props) {
|
|
4414
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
4415
|
+
viewBox: "0 0 16 16",
|
|
4416
|
+
width: props.width || props.size || '1em',
|
|
4417
|
+
height: props.height || props.size || '1em',
|
|
4418
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
4419
|
+
inline: undefined,
|
|
4420
|
+
color: props.color || 'currentColor'
|
|
4421
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4422
|
+
fill: "currentColor"
|
|
4423
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4424
|
+
d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
4425
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4426
|
+
d: "M7.3 4h1.4v5.1H7.3z"
|
|
4427
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
4428
|
+
cx: 8.005,
|
|
4429
|
+
cy: 11.375,
|
|
4430
|
+
r: 0.875
|
|
4431
|
+
})));
|
|
4432
|
+
}
|
|
4433
|
+
|
|
4434
|
+
function OutlinedValidationInfoIcon(props) {
|
|
4435
|
+
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
4436
|
+
viewBox: "0 0 16 16",
|
|
4437
|
+
width: props.width || props.size || '1em',
|
|
4438
|
+
height: props.height || props.size || '1em',
|
|
4439
|
+
className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
|
|
4440
|
+
inline: undefined,
|
|
4441
|
+
color: props.color || 'currentColor'
|
|
4442
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
4443
|
+
fill: "currentColor"
|
|
4444
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
4445
|
+
d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm0 13c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z"
|
|
4446
|
+
}), /*#__PURE__*/React.createElement("circle", {
|
|
4447
|
+
cx: 8.005,
|
|
4448
|
+
cy: 4.875,
|
|
4449
|
+
r: 0.875
|
|
4450
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
4451
|
+
d: "M8.7 7.5l-.006-.095A.7.7 0 008 6.8H6.3v1.4h1v2.418h-1v1.4h3.4v-1.4H8.699L8.7 7.5z"
|
|
4452
|
+
})));
|
|
4453
|
+
}
|
|
4454
|
+
|
|
4227
4455
|
function ValidationCheckIcon(props) {
|
|
4228
4456
|
return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
|
|
4229
4457
|
viewBox: "0 0 14 14",
|
|
@@ -4658,6 +4886,7 @@ exports.CheckIcon = CheckIcon;
|
|
|
4658
4886
|
exports.CityIcon = CityIcon;
|
|
4659
4887
|
exports.ClockIcon = ClockIcon;
|
|
4660
4888
|
exports.CloseIcon = CloseIcon;
|
|
4889
|
+
exports.CloseSmallIcon = CloseSmallIcon;
|
|
4661
4890
|
exports.ClosedLockIcon = ClosedLockIcon;
|
|
4662
4891
|
exports.CloudDownloadIcon = CloudDownloadIcon;
|
|
4663
4892
|
exports.CloudIcon = CloudIcon;
|
|
@@ -4671,6 +4900,8 @@ exports.CommentIcon = CommentIcon;
|
|
|
4671
4900
|
exports.ConfigurationIcon = ConfigurationIcon;
|
|
4672
4901
|
exports.ContactsIcon = ContactsIcon;
|
|
4673
4902
|
exports.CopyIcon = CopyIcon;
|
|
4903
|
+
exports.CorrespondenceIcon = CorrespondenceIcon;
|
|
4904
|
+
exports.CouchetteIcon = CouchetteIcon;
|
|
4674
4905
|
exports.CutleryIcon = CutleryIcon;
|
|
4675
4906
|
exports.DatabaseIcon = DatabaseIcon;
|
|
4676
4907
|
exports.DateIcon = DateIcon;
|
|
@@ -4746,6 +4977,10 @@ exports.OpenedLockIcon = OpenedLockIcon;
|
|
|
4746
4977
|
exports.OrganizationIcon = OrganizationIcon;
|
|
4747
4978
|
exports.OsloBysykkelIcon = OsloBysykkelIcon;
|
|
4748
4979
|
exports.OstfoldIcon = OstfoldIcon;
|
|
4980
|
+
exports.OutlinedValidationCheckIcon = OutlinedValidationCheckIcon;
|
|
4981
|
+
exports.OutlinedValidationErrorIcon = OutlinedValidationErrorIcon;
|
|
4982
|
+
exports.OutlinedValidationExclamationIcon = OutlinedValidationExclamationIcon;
|
|
4983
|
+
exports.OutlinedValidationInfoIcon = OutlinedValidationInfoIcon;
|
|
4749
4984
|
exports.PackageIcon = PackageIcon;
|
|
4750
4985
|
exports.ParkAndRideIcon = ParkAndRideIcon;
|
|
4751
4986
|
exports.ParkIcon = ParkIcon;
|
|
@@ -4859,9 +5094,12 @@ exports.VyIcon = VyIcon;
|
|
|
4859
5094
|
exports.WaitingRoomIcon = WaitingRoomIcon;
|
|
4860
5095
|
exports.WalkingIcon = WalkingIcon;
|
|
4861
5096
|
exports.WarningIcon = WarningIcon;
|
|
5097
|
+
exports.WaterTapIcon = WaterTapIcon;
|
|
4862
5098
|
exports.WheelchairIcon = WheelchairIcon;
|
|
4863
5099
|
exports.WifiIcon = WifiIcon;
|
|
4864
5100
|
exports.WindIcon = WindIcon;
|
|
4865
5101
|
exports.YoutubeIcon = YoutubeIcon;
|
|
5102
|
+
exports.ZoneIcon = ZoneIcon;
|
|
4866
5103
|
exports.ZoomInIcon = ZoomInIcon;
|
|
4867
5104
|
exports.ZoomOutIcon = ZoomOutIcon;
|
|
5105
|
+
exports.ZvippIcon = ZvippIcon;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@entur/icons",
|
|
3
|
-
"version": "3.1
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"rollup-plugin-babel": "4.4.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@entur/tokens": "^3.
|
|
49
|
-
"@entur/utils": "^0.4.
|
|
48
|
+
"@entur/tokens": "^3.3.1",
|
|
49
|
+
"@entur/utils": "^0.4.3"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "61e643371cfc5653c93160b7c220152e5b2bafeb"
|
|
52
52
|
}
|