@entur/icons 6.15.4 → 6.15.6

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/dist/index.d.ts CHANGED
@@ -323,14 +323,26 @@ export declare const TimelineIcon: React.FC<IconProps>;
323
323
  export declare const UnviewIcon: React.FC<IconProps>;
324
324
  export declare const UserIcon: React.FC<IconProps>;
325
325
  export declare const UsersIcon: React.FC<IconProps>;
326
+ /** @deprecated OutlinedValidationCheckIcon is deprecated; use ValidationCheckIcon instead */
326
327
  export declare const OutlinedValidationCheckIcon: React.FC<IconProps>;
328
+ /** @deprecated OutlinedValidationErrorIcon is deprecated; use ValidationErrorIcon instead */
327
329
  export declare const OutlinedValidationErrorIcon: React.FC<IconProps>;
330
+ /** @deprecated OutlinedValidationExclamationIcon is deprecated; use ValidationExclamationIcon instead */
328
331
  export declare const OutlinedValidationExclamationIcon: React.FC<IconProps>;
332
+ /** @deprecated OutlinedValidationInfoIcon is deprecated; use ValidationInfoIcon instead */
329
333
  export declare const OutlinedValidationInfoIcon: React.FC<IconProps>;
334
+ /** @deprecated ValidationCheckIcon is deprecated; use ValidationSuccessIcon instead */
330
335
  export declare const ValidationCheckIcon: React.FC<IconProps>;
336
+ /** @deprecated ValidationCheckFilledIcon is deprecated; use ValidationSuccessFilledIcon instead */
337
+ export declare const ValidationCheckFilledIcon: React.FC<IconProps>;
331
338
  export declare const ValidationErrorIcon: React.FC<IconProps>;
339
+ export declare const ValidationErrorFilledIcon: React.FC<IconProps>;
332
340
  export declare const ValidationExclamationIcon: React.FC<IconProps>;
341
+ export declare const ValidationExclamationFilledIcon: React.FC<IconProps>;
333
342
  export declare const ValidationInfoIcon: React.FC<IconProps>;
343
+ export declare const ValidationInfoFilledIcon: React.FC<IconProps>;
344
+ export declare const ValidationSuccessIcon: React.FC<IconProps>;
345
+ export declare const ValidationSuccessFilledIcon: React.FC<IconProps>;
334
346
  export declare const ValueIcon: React.FC<IconProps>;
335
347
  export declare const ViewIcon: React.FC<IconProps>;
336
348
  export declare const WarningIcon: React.FC<IconProps>;
package/dist/index.esm.js CHANGED
@@ -5683,7 +5683,9 @@ function UsersIcon(props) {
5683
5683
  }));
5684
5684
  }
5685
5685
 
5686
+ /** @deprecated OutlinedValidationCheckIcon is deprecated; use ValidationCheckIcon instead */
5686
5687
  function OutlinedValidationCheckIcon(props) {
5688
+ console.warn('Design system warning: OutlinedValidationCheckIcon is deprecated; use ValidationCheckIcon instead');
5687
5689
  return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5688
5690
  viewBox: "0 0 16 16",
5689
5691
  width: props.width || props.size || '1em',
@@ -5702,7 +5704,9 @@ function OutlinedValidationCheckIcon(props) {
5702
5704
  })));
5703
5705
  }
5704
5706
 
5707
+ /** @deprecated OutlinedValidationErrorIcon is deprecated; use ValidationErrorIcon instead */
5705
5708
  function OutlinedValidationErrorIcon(props) {
5709
+ console.warn('Design system warning: OutlinedValidationErrorIcon is deprecated; use ValidationErrorIcon instead');
5706
5710
  return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5707
5711
  viewBox: "0 0 16 16",
5708
5712
  width: props.width || props.size || '1em',
@@ -5721,7 +5725,9 @@ function OutlinedValidationErrorIcon(props) {
5721
5725
  })));
5722
5726
  }
5723
5727
 
5728
+ /** @deprecated OutlinedValidationExclamationIcon is deprecated; use ValidationExclamationIcon instead */
5724
5729
  function OutlinedValidationExclamationIcon(props) {
5730
+ console.warn('Design system warning: OutlinedValidationExclamationIcon is deprecated; use ValidationExclamationIcon instead');
5725
5731
  return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5726
5732
  viewBox: "0 0 16 16",
5727
5733
  width: props.width || props.size || '1em',
@@ -5742,7 +5748,9 @@ function OutlinedValidationExclamationIcon(props) {
5742
5748
  })));
5743
5749
  }
5744
5750
 
5751
+ /** @deprecated OutlinedValidationInfoIcon is deprecated; use ValidationInfoIcon instead */
5745
5752
  function OutlinedValidationInfoIcon(props) {
5753
+ console.warn('Design system warning: OutlinedValidationInfoIcon is deprecated; use ValidationInfoIcon instead');
5746
5754
  return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5747
5755
  viewBox: "0 0 16 16",
5748
5756
  width: props.width || props.size || '1em',
@@ -5763,40 +5771,75 @@ function OutlinedValidationInfoIcon(props) {
5763
5771
  })));
5764
5772
  }
5765
5773
 
5774
+ /** @deprecated ValidationCheckIcon is deprecated; use ValidationSuccessIcon instead */
5766
5775
  function ValidationCheckIcon(props) {
5776
+ console.warn('Design system warning: ValidationCheckIcon is deprecated; use ValidationSuccessIcon instead');
5767
5777
  return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5768
- viewBox: "0 0 14 14",
5778
+ fill: "none",
5779
+ viewBox: "0 0 16 16",
5780
+ width: props.width || props.size || '1em',
5781
+ height: props.height || props.size || '1em',
5782
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5783
+ inline: undefined,
5784
+ color: props.color || 'currentColor'
5785
+ }), /*#__PURE__*/React.createElement("path", {
5786
+ fill: "currentColor",
5787
+ d: "M7.424 10.924l4.5-4.5-.848-.848L7 9.65 4.924 7.576l-.848.848 2.5 2.5a.6.6 0 00.848 0z"
5788
+ }), /*#__PURE__*/React.createElement("path", {
5789
+ fill: "currentColor",
5790
+ fillRule: "evenodd",
5791
+ d: "M8 1a7 7 0 100 14A7 7 0 008 1zM2.2 8a5.8 5.8 0 1111.6 0A5.8 5.8 0 012.2 8z",
5792
+ clipRule: "evenodd"
5793
+ }));
5794
+ }
5795
+
5796
+ /** @deprecated ValidationCheckFilledIcon is deprecated; use ValidationSuccessFilledIcon instead */
5797
+ function ValidationCheckFilledIcon(props) {
5798
+ console.warn('Design system warning: ValidationCheckFilledIcon is deprecated; use ValidationSuccessFilledIcon instead');
5799
+ return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5800
+ fill: "none",
5801
+ viewBox: "0 0 16 16",
5769
5802
  width: props.width || props.size || '1em',
5770
5803
  height: props.height || props.size || '1em',
5771
5804
  className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5772
5805
  inline: undefined,
5773
5806
  color: props.color || 'currentColor'
5807
+ }), /*#__PURE__*/React.createElement("circle", {
5808
+ cx: 8,
5809
+ cy: 8,
5810
+ r: 6,
5811
+ fill: "#fff"
5774
5812
  }), /*#__PURE__*/React.createElement("path", {
5775
5813
  fill: "currentColor",
5776
5814
  fillRule: "evenodd",
5777
- d: "M7 0a7 7 0 100 14A7 7 0 007 0zm-.721 9.804a.636.636 0 01-.838.07l-.08-.07L3 7.374l.918-.944L5.82 8.386 10.082 4l.918.945-4.721 4.86z",
5815
+ d: "M8 15A7 7 0 108 1a7 7 0 000 14zm-.651-4.152l4.5-4.5L11 5.5 6.924 9.576 4.85 7.5 4 8.349l2.5 2.5a.6.6 0 00.849 0z",
5778
5816
  clipRule: "evenodd"
5779
5817
  }));
5780
5818
  }
5781
5819
 
5782
5820
  function ValidationErrorIcon(props) {
5783
5821
  return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5822
+ fill: "none",
5784
5823
  viewBox: "0 0 16 16",
5785
5824
  width: props.width || props.size || '1em',
5786
5825
  height: props.height || props.size || '1em',
5787
5826
  className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5788
5827
  inline: undefined,
5789
5828
  color: props.color || 'currentColor'
5829
+ }), /*#__PURE__*/React.createElement("path", {
5830
+ fill: "currentColor",
5831
+ d: "M8 7.151l2.076-2.075.848.848L8.85 8l2.075 2.076-.848.848L8 8.85l-2.076 2.075-.848-.848L7.15 8 5.076 5.924l.848-.848L8 7.15z"
5790
5832
  }), /*#__PURE__*/React.createElement("path", {
5791
5833
  fill: "currentColor",
5792
5834
  fillRule: "evenodd",
5793
- d: "M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm3.475 10.343l-1.132 1.131L8 9.13l-2.343 2.345-1.132-1.131 2.343-2.344-2.343-2.343 1.132-1.131L8 6.868l2.343-2.343 1.132 1.131L9.13 8z",
5835
+ d: "M1 8a7 7 0 1114 0A7 7 0 011 8zm7-5.8a5.8 5.8 0 100 11.6A5.8 5.8 0 008 2.2z",
5794
5836
  clipRule: "evenodd"
5795
5837
  }));
5796
5838
  }
5797
5839
 
5798
- function ValidationExclamationIcon(props) {
5840
+ function ValidationErrorFilledIcon(props) {
5799
5841
  return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5842
+ fill: "none",
5800
5843
  viewBox: "0 0 16 16",
5801
5844
  width: props.width || props.size || '1em',
5802
5845
  height: props.height || props.size || '1em',
@@ -5806,28 +5849,143 @@ function ValidationExclamationIcon(props) {
5806
5849
  }), /*#__PURE__*/React.createElement("circle", {
5807
5850
  cx: 8,
5808
5851
  cy: 8,
5809
- r: 4.4,
5852
+ r: 6,
5810
5853
  fill: "transparent"
5811
5854
  }), /*#__PURE__*/React.createElement("path", {
5812
5855
  fill: "currentColor",
5813
5856
  fillRule: "evenodd",
5814
- d: "M8 1C4.1 1 1 4.1 1 8s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7zm-.7 3h1.4v5.1H7.3V4zm.7 8.2c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9c0 .6-.4.9-.9.9z",
5857
+ d: "M8 15A7 7 0 108 1a7 7 0 000 14zm-2.924-4.924L7.15 8 5.076 5.924l.848-.848L8 7.152l2.076-2.076.848.848L8.85 8l2.075 2.076-.848.848L8 8.85l-2.076 2.075-.848-.848z",
5858
+ clipRule: "evenodd"
5859
+ }));
5860
+ }
5861
+
5862
+ function ValidationExclamationIcon(props) {
5863
+ return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5864
+ fill: "none",
5865
+ viewBox: "0 0 16 16",
5866
+ width: props.width || props.size || '1em',
5867
+ height: props.height || props.size || '1em',
5868
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5869
+ inline: undefined,
5870
+ color: props.color || 'currentColor'
5871
+ }), /*#__PURE__*/React.createElement("path", {
5872
+ fill: "currentColor",
5873
+ d: "M7.4 9V5.844h1.2V9H7.4z"
5874
+ }), /*#__PURE__*/React.createElement("path", {
5875
+ fill: "currentColor",
5876
+ d: "M8 11.75a.75.75 0 100-1.5.75.75 0 000 1.5z"
5877
+ }), /*#__PURE__*/React.createElement("path", {
5878
+ fill: "currentColor",
5879
+ fillRule: "evenodd",
5880
+ d: "M8 1.6a.6.6 0 01.52.299l6.5 11.196a.6.6 0 01-.519.901H1.5a.6.6 0 01-.519-.9l6.5-11.197a.6.6 0 01.52-.299zm5.46 11.197L8 3.395l-5.458 9.402H13.46z",
5881
+ clipRule: "evenodd"
5882
+ }));
5883
+ }
5884
+
5885
+ function ValidationExclamationFilledIcon(props) {
5886
+ return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5887
+ fill: "none",
5888
+ viewBox: "0 0 16 16",
5889
+ width: props.width || props.size || '1em',
5890
+ height: props.height || props.size || '1em',
5891
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5892
+ inline: undefined,
5893
+ color: props.color || 'currentColor'
5894
+ }), /*#__PURE__*/React.createElement("path", {
5895
+ fill: "transparent",
5896
+ d: "M8.365 4.217A.42.42 0 008 4a.42.42 0 00-.365.217l-4.578 8.129a.447.447 0 000 .436.42.42 0 00.365.218h9.155a.42.42 0 00.367-.218.447.447 0 00-.001-.436l-4.578-8.13z",
5897
+ className: "svg-exclamation"
5898
+ }), /*#__PURE__*/React.createElement("path", {
5899
+ fill: "currentColor",
5900
+ fillRule: "evenodd",
5901
+ d: "M8 1.6a.6.6 0 01.52.299l6.5 11.196a.6.6 0 01-.519.901H1.5a.6.6 0 01-.519-.9l6.5-11.197a.6.6 0 01.52-.299zM7.4 9V5.844h1.2V9H7.4zm1.35 2a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",
5815
5902
  clipRule: "evenodd"
5816
5903
  }));
5817
5904
  }
5818
5905
 
5819
5906
  function ValidationInfoIcon(props) {
5820
5907
  return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5908
+ fill: "none",
5909
+ viewBox: "0 0 16 16",
5910
+ width: props.width || props.size || '1em',
5911
+ height: props.height || props.size || '1em',
5912
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5913
+ inline: undefined,
5914
+ color: props.color || 'currentColor'
5915
+ }), /*#__PURE__*/React.createElement("path", {
5916
+ fill: "currentColor",
5917
+ d: "M6.25 10.15v1.2h3.5v-1.2H8.6V7.266a.6.6 0 00-.595-.6l-1.75-.016-.01 1.2 1.155.01v2.29H6.25z"
5918
+ }), /*#__PURE__*/React.createElement("path", {
5919
+ fill: "currentColor",
5920
+ d: "M8 5.75a.75.75 0 100-1.5.75.75 0 000 1.5z"
5921
+ }), /*#__PURE__*/React.createElement("path", {
5922
+ fill: "currentColor",
5923
+ fillRule: "evenodd",
5924
+ d: "M8 1a7 7 0 100 14.001A7 7 0 008 1zM2.2 8a5.8 5.8 0 1111.6 0A5.8 5.8 0 012.2 8z",
5925
+ clipRule: "evenodd"
5926
+ }));
5927
+ }
5928
+
5929
+ function ValidationInfoFilledIcon(props) {
5930
+ return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5931
+ fill: "none",
5932
+ viewBox: "0 0 16 16",
5933
+ width: props.width || props.size || '1em',
5934
+ height: props.height || props.size || '1em',
5935
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5936
+ inline: undefined,
5937
+ color: props.color || 'currentColor'
5938
+ }), /*#__PURE__*/React.createElement("circle", {
5939
+ cx: 8,
5940
+ cy: 8,
5941
+ r: 6,
5942
+ fill: "transparent"
5943
+ }), /*#__PURE__*/React.createElement("path", {
5944
+ fill: "currentColor",
5945
+ fillRule: "evenodd",
5946
+ d: "M8 15.002A7 7 0 108 1a7 7 0 000 14.002zm.82-10.283a.82.82 0 11-1.64 0 .82.82 0 011.64 0zM8 6.597H6.25v1.2H7.4v2.353H6.25v1.2h3.5v-1.2H8.6V7.197a.6.6 0 00-.6-.6z",
5947
+ clipRule: "evenodd"
5948
+ }));
5949
+ }
5950
+
5951
+ function ValidationSuccessIcon(props) {
5952
+ return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5953
+ fill: "none",
5821
5954
  viewBox: "0 0 16 16",
5822
5955
  width: props.width || props.size || '1em',
5823
5956
  height: props.height || props.size || '1em',
5824
5957
  className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5825
5958
  inline: undefined,
5826
5959
  color: props.color || 'currentColor'
5960
+ }), /*#__PURE__*/React.createElement("path", {
5961
+ fill: "currentColor",
5962
+ d: "M7.424 10.924l4.5-4.5-.848-.848L7 9.65 4.924 7.576l-.848.848 2.5 2.5a.6.6 0 00.848 0z"
5963
+ }), /*#__PURE__*/React.createElement("path", {
5964
+ fill: "currentColor",
5965
+ fillRule: "evenodd",
5966
+ d: "M8 1a7 7 0 100 14A7 7 0 008 1zM2.2 8a5.8 5.8 0 1111.6 0A5.8 5.8 0 012.2 8z",
5967
+ clipRule: "evenodd"
5968
+ }));
5969
+ }
5970
+
5971
+ function ValidationSuccessFilledIcon(props) {
5972
+ return /*#__PURE__*/React.createElement("svg", _extends({}, props, {
5973
+ fill: "none",
5974
+ viewBox: "0 0 16 16",
5975
+ width: props.width || props.size || '1em',
5976
+ height: props.height || props.size || '1em',
5977
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5978
+ inline: undefined,
5979
+ color: props.color || 'currentColor'
5980
+ }), /*#__PURE__*/React.createElement("circle", {
5981
+ cx: 8,
5982
+ cy: 8,
5983
+ r: 6,
5984
+ fill: "transparent"
5827
5985
  }), /*#__PURE__*/React.createElement("path", {
5828
5986
  fill: "currentColor",
5829
5987
  fillRule: "evenodd",
5830
- d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm.005 3a.875.875 0 110 1.75.875.875 0 010-1.75zM9.7 12.018H6.3v-1.4h1V8.199l-1 .001V6.8H8a.7.7 0 01.694.605L8.7 7.5l-.001 3.118H9.7v1.4z",
5988
+ d: "M8 15A7 7 0 108 1a7 7 0 000 14zm-.651-4.152l4.5-4.5L11 5.5 6.924 9.576 4.85 7.5 4 8.349l2.5 2.5a.6.6 0 00.849 0z",
5831
5989
  clipRule: "evenodd"
5832
5990
  }));
5833
5991
  }
@@ -6157,4 +6315,4 @@ function ZoomOutIcon(props) {
6157
6315
  }));
6158
6316
  }
6159
6317
 
6160
- export { AKTIcon, AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AmericanExpressIcon, AnimalFreeIcon, AnimalIcon, AssignToMeFilledIcon, AssignToMeIcon, AtBIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrakarNoTextIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CabinIcon, CablewayIcon, CalculatorIcon, CalendarDetailedFilledIcon, CalendarDetailedIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckFilledIcon, CheckIcon, CheckSmallFilledIcon, CheckSmallIcon, CircleFilledIcon, CircleIcon, CityBikeIcon, CityIcon, ClockFilledIcon, ClockIcon, CloseFilledIcon, CloseIcon, CloseSmallFilledIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, CompassNeedleIcon, ConductorIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CorrespondenceIcon, CouchetteIcon, CustomerServiceFilledIcon, CustomerServiceIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DirectionFilledIcon, DirectionIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FeedbackFilledIcon, FeedbackIcon, FerryIcon, FileIcon, FillIcon, FilterFilledIcon, FilterIcon, FlybussenIcon, ForwardIcon, FullIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, GymIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, HykeIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LanguageFilledIcon, LanguageIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LostAndFoundFilledIcon, LostAndFoundIcon, LuggageIcon, ManySeatsAvailableIcon, MapFilledIcon, MapIcon, MapPinIcon, MastercardIcon, MeasureFilledIcon, MeasureIcon, MenuIcon, MergeProfilesIcon, MetroIcon, MinimizeIcon, MobileIcon, MobilityIcon, MoneyIcon, MountainIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlaygroundIcon, PlayroomIcon, PositionFilledIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RebateTicketFilledIcon, RebateTicketIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, RuterNoTextIcon, SJIcon, SamiIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchFilledIcon, SearchIcon, SeatIcon, SeatsAvailableIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SkyssNoTextIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingAvailableIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TerminalFilledIcon, TerminalIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TromsFylkestrafikkIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UniversityIcon, UnlinkIcon, UnsortedIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketFilledIcon, ValidTicketIcon, ValidationCheckIcon, ValidationErrorIcon, ValidationExclamationIcon, ValidationInfoIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkIcon, WalkingIcon, WarningIcon, WaterTapIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoneIcon, ZoomInIcon, ZoomOutIcon, ZvippIcon };
6318
+ export { AKTIcon, AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AmericanExpressIcon, AnimalFreeIcon, AnimalIcon, AssignToMeFilledIcon, AssignToMeIcon, AtBIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrakarNoTextIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CabinIcon, CablewayIcon, CalculatorIcon, CalendarDetailedFilledIcon, CalendarDetailedIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckFilledIcon, CheckIcon, CheckSmallFilledIcon, CheckSmallIcon, CircleFilledIcon, CircleIcon, CityBikeIcon, CityIcon, ClockFilledIcon, ClockIcon, CloseFilledIcon, CloseIcon, CloseSmallFilledIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, CompassNeedleIcon, ConductorIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CorrespondenceIcon, CouchetteIcon, CustomerServiceFilledIcon, CustomerServiceIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DirectionFilledIcon, DirectionIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FeedbackFilledIcon, FeedbackIcon, FerryIcon, FileIcon, FillIcon, FilterFilledIcon, FilterIcon, FlybussenIcon, ForwardIcon, FullIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, GymIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, HykeIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LanguageFilledIcon, LanguageIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LostAndFoundFilledIcon, LostAndFoundIcon, LuggageIcon, ManySeatsAvailableIcon, MapFilledIcon, MapIcon, MapPinIcon, MastercardIcon, MeasureFilledIcon, MeasureIcon, MenuIcon, MergeProfilesIcon, MetroIcon, MinimizeIcon, MobileIcon, MobilityIcon, MoneyIcon, MountainIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlaygroundIcon, PlayroomIcon, PositionFilledIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RebateTicketFilledIcon, RebateTicketIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, RuterNoTextIcon, SJIcon, SamiIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchFilledIcon, SearchIcon, SeatIcon, SeatsAvailableIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SkyssNoTextIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingAvailableIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TerminalFilledIcon, TerminalIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TromsFylkestrafikkIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UniversityIcon, UnlinkIcon, UnsortedIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketFilledIcon, ValidTicketIcon, ValidationCheckFilledIcon, ValidationCheckIcon, ValidationErrorFilledIcon, ValidationErrorIcon, ValidationExclamationFilledIcon, ValidationExclamationIcon, ValidationInfoFilledIcon, ValidationInfoIcon, ValidationSuccessFilledIcon, ValidationSuccessIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkIcon, WalkingIcon, WarningIcon, WaterTapIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoneIcon, ZoomInIcon, ZoomOutIcon, ZvippIcon };
@@ -5148,34 +5148,63 @@ function OutlinedValidationInfoIcon(props) {
5148
5148
 
5149
5149
  function ValidationCheckIcon(props) {
5150
5150
  return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
5151
- viewBox: "0 0 14 14",
5151
+ fill: "none",
5152
+ viewBox: "0 0 16 16",
5152
5153
  width: props.width || props.size || 16,
5153
5154
  height: props.height || props.size || 16,
5154
5155
  color: props.color || '#181C56'
5156
+ }), /*#__PURE__*/React.createElement(Path, {
5157
+ fill: "currentColor",
5158
+ d: "M7.424 10.924l4.5-4.5-.848-.848L7 9.65 4.924 7.576l-.848.848 2.5 2.5a.6.6 0 00.848 0z"
5155
5159
  }), /*#__PURE__*/React.createElement(Path, {
5156
5160
  fill: "currentColor",
5157
5161
  fillRule: "evenodd",
5158
- d: "M7 0a7 7 0 100 14A7 7 0 007 0zm-.721 9.804a.636.636 0 01-.838.07l-.08-.07L3 7.374l.918-.944L5.82 8.386 10.082 4l.918.945-4.721 4.86z",
5162
+ d: "M8 1a7 7 0 100 14A7 7 0 008 1zM2.2 8a5.8 5.8 0 1111.6 0A5.8 5.8 0 012.2 8z",
5163
+ clipRule: "evenodd"
5164
+ }));
5165
+ }
5166
+
5167
+ function ValidationCheckFilledIcon(props) {
5168
+ return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
5169
+ fill: "none",
5170
+ viewBox: "0 0 16 16",
5171
+ width: props.width || props.size || 16,
5172
+ height: props.height || props.size || 16,
5173
+ color: props.color || '#181C56'
5174
+ }), /*#__PURE__*/React.createElement(Circle, {
5175
+ cx: 8,
5176
+ cy: 8,
5177
+ r: 6,
5178
+ fill: "#fff"
5179
+ }), /*#__PURE__*/React.createElement(Path, {
5180
+ fill: "currentColor",
5181
+ fillRule: "evenodd",
5182
+ d: "M8 15A7 7 0 108 1a7 7 0 000 14zm-.651-4.152l4.5-4.5L11 5.5 6.924 9.576 4.85 7.5 4 8.349l2.5 2.5a.6.6 0 00.849 0z",
5159
5183
  clipRule: "evenodd"
5160
5184
  }));
5161
5185
  }
5162
5186
 
5163
5187
  function ValidationErrorIcon(props) {
5164
5188
  return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
5189
+ fill: "none",
5165
5190
  viewBox: "0 0 16 16",
5166
5191
  width: props.width || props.size || 16,
5167
5192
  height: props.height || props.size || 16,
5168
5193
  color: props.color || '#181C56'
5194
+ }), /*#__PURE__*/React.createElement(Path, {
5195
+ fill: "currentColor",
5196
+ d: "M8 7.151l2.076-2.075.848.848L8.85 8l2.075 2.076-.848.848L8 8.85l-2.076 2.075-.848-.848L7.15 8 5.076 5.924l.848-.848L8 7.15z"
5169
5197
  }), /*#__PURE__*/React.createElement(Path, {
5170
5198
  fill: "currentColor",
5171
5199
  fillRule: "evenodd",
5172
- d: "M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm3.475 10.343l-1.132 1.131L8 9.13l-2.343 2.345-1.132-1.131 2.343-2.344-2.343-2.343 1.132-1.131L8 6.868l2.343-2.343 1.132 1.131L9.13 8z",
5200
+ d: "M1 8a7 7 0 1114 0A7 7 0 011 8zm7-5.8a5.8 5.8 0 100 11.6A5.8 5.8 0 008 2.2z",
5173
5201
  clipRule: "evenodd"
5174
5202
  }));
5175
5203
  }
5176
5204
 
5177
- function ValidationExclamationIcon(props) {
5205
+ function ValidationErrorFilledIcon(props) {
5178
5206
  return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
5207
+ fill: "none",
5179
5208
  viewBox: "0 0 16 16",
5180
5209
  width: props.width || props.size || 16,
5181
5210
  height: props.height || props.size || 16,
@@ -5183,26 +5212,131 @@ function ValidationExclamationIcon(props) {
5183
5212
  }), /*#__PURE__*/React.createElement(Circle, {
5184
5213
  cx: 8,
5185
5214
  cy: 8,
5186
- r: 4.4,
5215
+ r: 6,
5187
5216
  fill: "transparent"
5188
5217
  }), /*#__PURE__*/React.createElement(Path, {
5189
5218
  fill: "currentColor",
5190
5219
  fillRule: "evenodd",
5191
- d: "M8 1C4.1 1 1 4.1 1 8s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7zm-.7 3h1.4v5.1H7.3V4zm.7 8.2c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9c0 .6-.4.9-.9.9z",
5220
+ d: "M8 15A7 7 0 108 1a7 7 0 000 14zm-2.924-4.924L7.15 8 5.076 5.924l.848-.848L8 7.152l2.076-2.076.848.848L8.85 8l2.075 2.076-.848.848L8 8.85l-2.076 2.075-.848-.848z",
5221
+ clipRule: "evenodd"
5222
+ }));
5223
+ }
5224
+
5225
+ function ValidationExclamationIcon(props) {
5226
+ return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
5227
+ fill: "none",
5228
+ viewBox: "0 0 16 16",
5229
+ width: props.width || props.size || 16,
5230
+ height: props.height || props.size || 16,
5231
+ color: props.color || '#181C56'
5232
+ }), /*#__PURE__*/React.createElement(Path, {
5233
+ fill: "currentColor",
5234
+ d: "M7.4 9V5.844h1.2V9H7.4z"
5235
+ }), /*#__PURE__*/React.createElement(Path, {
5236
+ fill: "currentColor",
5237
+ d: "M8 11.75a.75.75 0 100-1.5.75.75 0 000 1.5z"
5238
+ }), /*#__PURE__*/React.createElement(Path, {
5239
+ fill: "currentColor",
5240
+ fillRule: "evenodd",
5241
+ d: "M8 1.6a.6.6 0 01.52.299l6.5 11.196a.6.6 0 01-.519.901H1.5a.6.6 0 01-.519-.9l6.5-11.197a.6.6 0 01.52-.299zm5.46 11.197L8 3.395l-5.458 9.402H13.46z",
5242
+ clipRule: "evenodd"
5243
+ }));
5244
+ }
5245
+
5246
+ function ValidationExclamationFilledIcon(props) {
5247
+ return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
5248
+ fill: "none",
5249
+ viewBox: "0 0 16 16",
5250
+ width: props.width || props.size || 16,
5251
+ height: props.height || props.size || 16,
5252
+ color: props.color || '#181C56'
5253
+ }), /*#__PURE__*/React.createElement(Path, {
5254
+ fill: "transparent",
5255
+ d: "M8.365 4.217A.42.42 0 008 4a.42.42 0 00-.365.217l-4.578 8.129a.447.447 0 000 .436.42.42 0 00.365.218h9.155a.42.42 0 00.367-.218.447.447 0 00-.001-.436l-4.578-8.13z",
5256
+ className: "svg-exclamation"
5257
+ }), /*#__PURE__*/React.createElement(Path, {
5258
+ fill: "currentColor",
5259
+ fillRule: "evenodd",
5260
+ d: "M8 1.6a.6.6 0 01.52.299l6.5 11.196a.6.6 0 01-.519.901H1.5a.6.6 0 01-.519-.9l6.5-11.197a.6.6 0 01.52-.299zM7.4 9V5.844h1.2V9H7.4zm1.35 2a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",
5192
5261
  clipRule: "evenodd"
5193
5262
  }));
5194
5263
  }
5195
5264
 
5196
5265
  function ValidationInfoIcon(props) {
5197
5266
  return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
5267
+ fill: "none",
5268
+ viewBox: "0 0 16 16",
5269
+ width: props.width || props.size || 16,
5270
+ height: props.height || props.size || 16,
5271
+ color: props.color || '#181C56'
5272
+ }), /*#__PURE__*/React.createElement(Path, {
5273
+ fill: "currentColor",
5274
+ d: "M6.25 10.15v1.2h3.5v-1.2H8.6V7.266a.6.6 0 00-.595-.6l-1.75-.016-.01 1.2 1.155.01v2.29H6.25z"
5275
+ }), /*#__PURE__*/React.createElement(Path, {
5276
+ fill: "currentColor",
5277
+ d: "M8 5.75a.75.75 0 100-1.5.75.75 0 000 1.5z"
5278
+ }), /*#__PURE__*/React.createElement(Path, {
5279
+ fill: "currentColor",
5280
+ fillRule: "evenodd",
5281
+ d: "M8 1a7 7 0 100 14.001A7 7 0 008 1zM2.2 8a5.8 5.8 0 1111.6 0A5.8 5.8 0 012.2 8z",
5282
+ clipRule: "evenodd"
5283
+ }));
5284
+ }
5285
+
5286
+ function ValidationInfoFilledIcon(props) {
5287
+ return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
5288
+ fill: "none",
5289
+ viewBox: "0 0 16 16",
5290
+ width: props.width || props.size || 16,
5291
+ height: props.height || props.size || 16,
5292
+ color: props.color || '#181C56'
5293
+ }), /*#__PURE__*/React.createElement(Circle, {
5294
+ cx: 8,
5295
+ cy: 8,
5296
+ r: 6,
5297
+ fill: "transparent"
5298
+ }), /*#__PURE__*/React.createElement(Path, {
5299
+ fill: "currentColor",
5300
+ fillRule: "evenodd",
5301
+ d: "M8 15.002A7 7 0 108 1a7 7 0 000 14.002zm.82-10.283a.82.82 0 11-1.64 0 .82.82 0 011.64 0zM8 6.597H6.25v1.2H7.4v2.353H6.25v1.2h3.5v-1.2H8.6V7.197a.6.6 0 00-.6-.6z",
5302
+ clipRule: "evenodd"
5303
+ }));
5304
+ }
5305
+
5306
+ function ValidationSuccessIcon(props) {
5307
+ return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
5308
+ fill: "none",
5309
+ viewBox: "0 0 16 16",
5310
+ width: props.width || props.size || 16,
5311
+ height: props.height || props.size || 16,
5312
+ color: props.color || '#181C56'
5313
+ }), /*#__PURE__*/React.createElement(Path, {
5314
+ fill: "currentColor",
5315
+ d: "M7.424 10.924l4.5-4.5-.848-.848L7 9.65 4.924 7.576l-.848.848 2.5 2.5a.6.6 0 00.848 0z"
5316
+ }), /*#__PURE__*/React.createElement(Path, {
5317
+ fill: "currentColor",
5318
+ fillRule: "evenodd",
5319
+ d: "M8 1a7 7 0 100 14A7 7 0 008 1zM2.2 8a5.8 5.8 0 1111.6 0A5.8 5.8 0 012.2 8z",
5320
+ clipRule: "evenodd"
5321
+ }));
5322
+ }
5323
+
5324
+ function ValidationSuccessFilledIcon(props) {
5325
+ return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
5326
+ fill: "none",
5198
5327
  viewBox: "0 0 16 16",
5199
5328
  width: props.width || props.size || 16,
5200
5329
  height: props.height || props.size || 16,
5201
5330
  color: props.color || '#181C56'
5331
+ }), /*#__PURE__*/React.createElement(Circle, {
5332
+ cx: 8,
5333
+ cy: 8,
5334
+ r: 6,
5335
+ fill: "transparent"
5202
5336
  }), /*#__PURE__*/React.createElement(Path, {
5203
5337
  fill: "currentColor",
5204
5338
  fillRule: "evenodd",
5205
- d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm.005 3a.875.875 0 110 1.75.875.875 0 010-1.75zM9.7 12.018H6.3v-1.4h1V8.199l-1 .001V6.8H8a.7.7 0 01.694.605L8.7 7.5l-.001 3.118H9.7v1.4z",
5339
+ d: "M8 15A7 7 0 108 1a7 7 0 000 14zm-.651-4.152l4.5-4.5L11 5.5 6.924 9.576 4.85 7.5 4 8.349l2.5 2.5a.6.6 0 00.849 0z",
5206
5340
  clipRule: "evenodd"
5207
5341
  }));
5208
5342
  }
@@ -5502,4 +5636,4 @@ function ZoomOutIcon(props) {
5502
5636
  }));
5503
5637
  }
5504
5638
 
5505
- export { AKTIcon, AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AmericanExpressIcon, AnimalFreeIcon, AnimalIcon, AssignToMeFilledIcon, AssignToMeIcon, AtBIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrakarNoTextIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CabinIcon, CablewayIcon, CalculatorIcon, CalendarDetailedFilledIcon, CalendarDetailedIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckFilledIcon, CheckIcon, CheckSmallFilledIcon, CheckSmallIcon, CircleFilledIcon, CircleIcon, CityBikeIcon, CityIcon, ClockFilledIcon, ClockIcon, CloseFilledIcon, CloseIcon, CloseSmallFilledIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, CompassNeedleIcon, ConductorIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CorrespondenceIcon, CouchetteIcon, CustomerServiceFilledIcon, CustomerServiceIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DirectionFilledIcon, DirectionIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FeedbackFilledIcon, FeedbackIcon, FerryIcon, FileIcon, FillIcon, FilterFilledIcon, FilterIcon, FlybussenIcon, ForwardIcon, FullIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, GymIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, HykeIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LanguageFilledIcon, LanguageIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LostAndFoundFilledIcon, LostAndFoundIcon, LuggageIcon, ManySeatsAvailableIcon, MapFilledIcon, MapIcon, MapPinIcon, MastercardIcon, MeasureFilledIcon, MeasureIcon, MenuIcon, MergeProfilesIcon, MetroIcon, MinimizeIcon, MobileIcon, MobilityIcon, MoneyIcon, MountainIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlaygroundIcon, PlayroomIcon, PositionFilledIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RebateTicketFilledIcon, RebateTicketIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, RuterNoTextIcon, SJIcon, SamiIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchFilledIcon, SearchIcon, SeatIcon, SeatsAvailableIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SkyssNoTextIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingAvailableIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TerminalFilledIcon, TerminalIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TromsFylkestrafikkIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UniversityIcon, UnlinkIcon, UnsortedIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketFilledIcon, ValidTicketIcon, ValidationCheckIcon, ValidationErrorIcon, ValidationExclamationIcon, ValidationInfoIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkIcon, WalkingIcon, WarningIcon, WaterTapIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoneIcon, ZoomInIcon, ZoomOutIcon, ZvippIcon };
5639
+ export { AKTIcon, AccessibilityIcon, AddCardIcon, AddIcon, AdditionalIcon, AdditionalZonesTicketIcon, AdjustmentsIcon, AdminIcon, AgreesIcon, AlignCenterIcon, AlignLeftIcon, AlignRightIcon, AmericanExpressIcon, AnimalFreeIcon, AnimalIcon, AssignToMeFilledIcon, AssignToMeIcon, AtBIcon, AttachmentIcon, BabyIcon, BackArrowIcon, BanknoteIcon, BanknoteMultiIcon, BatteryIcon, BellIcon, BergenBysykkelIcon, BicycleHotelIcon, BicycleIcon, BicycleParkingIcon, BoldIcon, BoltIcon, BookmarkIcon, BrakarIcon, BrakarNoTextIcon, BrightnessIcon, BugIcon, BulletListIcon, BusIcon, BusShelterIcon, CabinIcon, CablewayIcon, CalculatorIcon, CalendarDetailedFilledIcon, CalendarDetailedIcon, CalendarIcon, CameraIcon, CarIcon, CardIcon, CarferryIcon, ChannelsIcon, ChatIcon, CheckFilledIcon, CheckIcon, CheckSmallFilledIcon, CheckSmallIcon, CircleFilledIcon, CircleIcon, CityBikeIcon, CityIcon, ClockFilledIcon, ClockIcon, CloseFilledIcon, CloseIcon, CloseSmallFilledIcon, CloseSmallIcon, ClosedLockIcon, CloudDownloadIcon, CloudIcon, CloudLightningIcon, CloudRainIcon, CloudSnowIcon, CoffeeIcon, CollapsedIcon, ColorPickerIcon, CommentIcon, CompassNeedleIcon, ConductorIcon, ConfigurationIcon, ContactsIcon, CopyIcon, CorrespondenceIcon, CouchetteIcon, CustomerServiceFilledIcon, CustomerServiceIcon, CutleryIcon, DatabaseIcon, DateIcon, DeleteIcon, DenmarkIcon, DepositionIcon, DesktopIcon, DestinationIcon, DiffIcon, DirectionFilledIcon, DirectionIcon, DownArrowIcon, DownloadIcon, DownwardIcon, DraggableIcon, EditIcon, EmailIcon, EnvironmentIcon, EuroIcon, ExpandIcon, ExtendIcon, ExternalIcon, FacebookIcon, FarteIcon, FeedbackFilledIcon, FeedbackIcon, FerryIcon, FileIcon, FillIcon, FilterFilledIcon, FilterIcon, FlybussenIcon, ForwardIcon, FullIcon, FunicularIcon, GOAIcon, GithubIcon, GoalIcon, GoogleIcon, GridViewIcon, GymIcon, HandToolIcon, HeartIcon, HelicopterIcon, HomeIcon, HorizontalDotsIcon, HykeIcon, ImageIcon, InnlandstrafikkIcon, InstagramIcon, InternationalIcon, InterrailIcon, InvalidTicketIcon, ItalicIcon, KolumbusBysykkelIcon, KolumbusIcon, LanguageFilledIcon, LanguageIcon, LaptopIcon, LeftArrowIcon, LikeIcon, LimeIcon, LinkIcon, LinkedinIcon, ListViewIcon, LoadingIcon, LockerIcon, LogOutIcon, LogoNegativeIcon, LogoPositiveIcon, LostAndFoundFilledIcon, LostAndFoundIcon, LuggageIcon, ManySeatsAvailableIcon, MapFilledIcon, MapIcon, MapPinIcon, MastercardIcon, MeasureFilledIcon, MeasureIcon, MenuIcon, MergeProfilesIcon, MetroIcon, MinimizeIcon, MobileIcon, MobilityIcon, MoneyIcon, MountainIcon, MoveAboutIcon, NewIcon, NightIcon, NorwayIcon, NumberListIcon, OpenedLockIcon, OrganizationIcon, OsloBysykkelIcon, OstfoldIcon, OutlinedValidationCheckIcon, OutlinedValidationErrorIcon, OutlinedValidationExclamationIcon, OutlinedValidationInfoIcon, PackageIcon, ParkAndRideIcon, ParkIcon, ParkingGarageIcon, PhoneIcon, PlaneIcon, PlayIcon, PlaygroundIcon, PlayroomIcon, PositionFilledIcon, PositionIcon, PowerIcon, PremiumSeatIcon, PriceFromIcon, PricelistIcon, PrinterIcon, PrioritySeatPregnantIcon, PrioritySeatSeniorsIcon, PrivacyIcon, PurposeIcon, QRIcon, QuestionIcon, QuietIcon, QuitIcon, RSSIcon, RebateTicketFilledIcon, RebateTicketIcon, RedoIcon, ReferenceIcon, RefreshIcon, ReportsIcon, ResetIcon, RightArrowIcon, RowHeightDefaultIcon, RowHeightMiddleIcon, RowHeightSmallIcon, RulesIcon, RunningIcon, RuterIcon, RuterNoTextIcon, SJIcon, SamiIcon, SaveIcon, ScooterIcon, ScopeIcon, SearchFilledIcon, SearchIcon, SeatIcon, SeatsAvailableIcon, SelectIcon, SendIcon, SettingsIcon, ShareIcon, ShoppingCartIcon, SkiIcon, SkypeIcon, SkyssIcon, SkyssNoTextIcon, SleepIcon, SourceCodeIcon, StandardIcon, StandingAvailableIcon, StandingIcon, StarredIcon, StatsIcon, StrollerIcon, StrollingIcon, SubtractIcon, SubwayIcon, SuitcaseIcon, SunCloudIcon, SunCloudRainIcon, SunIcon, SwedenIcon, SwitchIcon, TVMIcon, TaxiIcon, TerminalFilledIcon, TerminalIcon, TextColorIcon, ThermometerIcon, TierIcon, TimelineIcon, ToFromIcon, ToiletIcon, TrackIcon, TrainCarIcon, TrainIcon, TramIcon, TransferIcon, TromsFylkestrafikkIcon, TrondheimBysykkelIcon, TurnableIcon, TwitterIcon, UKIcon, UmbrellaIcon, UnderlineIcon, UndoIcon, UniversityIcon, UnlinkIcon, UnsortedIcon, UnstarredIcon, UnviewIcon, UpArrowIcon, UploadIcon, UpwardIcon, UserIcon, UsersIcon, VKTIcon, ValidTicketFilledIcon, ValidTicketIcon, ValidationCheckFilledIcon, ValidationCheckIcon, ValidationErrorFilledIcon, ValidationErrorIcon, ValidationExclamationFilledIcon, ValidationExclamationIcon, ValidationInfoFilledIcon, ValidationInfoIcon, ValidationSuccessFilledIcon, ValidationSuccessIcon, ValueIcon, VendingMachineIcon, VerticalDotsIcon, VerticalSwitchIcon, ViewIcon, VimeoIcon, VippsIcon, VippsLogoIcon, VisaIcon, VoiIcon, VyIcon, WaitingRoomIcon, WalkIcon, WalkingIcon, WarningIcon, WaterTapIcon, WheelchairIcon, WifiIcon, WindIcon, YoutubeIcon, ZoneIcon, ZoomInIcon, ZoomOutIcon, ZvippIcon };
package/dist/index.js CHANGED
@@ -5707,7 +5707,9 @@ function UsersIcon(props) {
5707
5707
  }));
5708
5708
  }
5709
5709
 
5710
+ /** @deprecated OutlinedValidationCheckIcon is deprecated; use ValidationCheckIcon instead */
5710
5711
  function OutlinedValidationCheckIcon(props) {
5712
+ console.warn('Design system warning: OutlinedValidationCheckIcon is deprecated; use ValidationCheckIcon instead');
5711
5713
  return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5712
5714
  viewBox: "0 0 16 16",
5713
5715
  width: props.width || props.size || '1em',
@@ -5726,7 +5728,9 @@ function OutlinedValidationCheckIcon(props) {
5726
5728
  })));
5727
5729
  }
5728
5730
 
5731
+ /** @deprecated OutlinedValidationErrorIcon is deprecated; use ValidationErrorIcon instead */
5729
5732
  function OutlinedValidationErrorIcon(props) {
5733
+ console.warn('Design system warning: OutlinedValidationErrorIcon is deprecated; use ValidationErrorIcon instead');
5730
5734
  return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5731
5735
  viewBox: "0 0 16 16",
5732
5736
  width: props.width || props.size || '1em',
@@ -5745,7 +5749,9 @@ function OutlinedValidationErrorIcon(props) {
5745
5749
  })));
5746
5750
  }
5747
5751
 
5752
+ /** @deprecated OutlinedValidationExclamationIcon is deprecated; use ValidationExclamationIcon instead */
5748
5753
  function OutlinedValidationExclamationIcon(props) {
5754
+ console.warn('Design system warning: OutlinedValidationExclamationIcon is deprecated; use ValidationExclamationIcon instead');
5749
5755
  return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5750
5756
  viewBox: "0 0 16 16",
5751
5757
  width: props.width || props.size || '1em',
@@ -5766,7 +5772,9 @@ function OutlinedValidationExclamationIcon(props) {
5766
5772
  })));
5767
5773
  }
5768
5774
 
5775
+ /** @deprecated OutlinedValidationInfoIcon is deprecated; use ValidationInfoIcon instead */
5769
5776
  function OutlinedValidationInfoIcon(props) {
5777
+ console.warn('Design system warning: OutlinedValidationInfoIcon is deprecated; use ValidationInfoIcon instead');
5770
5778
  return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5771
5779
  viewBox: "0 0 16 16",
5772
5780
  width: props.width || props.size || '1em',
@@ -5787,40 +5795,75 @@ function OutlinedValidationInfoIcon(props) {
5787
5795
  })));
5788
5796
  }
5789
5797
 
5798
+ /** @deprecated ValidationCheckIcon is deprecated; use ValidationSuccessIcon instead */
5790
5799
  function ValidationCheckIcon(props) {
5800
+ console.warn('Design system warning: ValidationCheckIcon is deprecated; use ValidationSuccessIcon instead');
5791
5801
  return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5792
- viewBox: "0 0 14 14",
5802
+ fill: "none",
5803
+ viewBox: "0 0 16 16",
5804
+ width: props.width || props.size || '1em',
5805
+ height: props.height || props.size || '1em',
5806
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5807
+ inline: undefined,
5808
+ color: props.color || 'currentColor'
5809
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5810
+ fill: "currentColor",
5811
+ d: "M7.424 10.924l4.5-4.5-.848-.848L7 9.65 4.924 7.576l-.848.848 2.5 2.5a.6.6 0 00.848 0z"
5812
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5813
+ fill: "currentColor",
5814
+ fillRule: "evenodd",
5815
+ d: "M8 1a7 7 0 100 14A7 7 0 008 1zM2.2 8a5.8 5.8 0 1111.6 0A5.8 5.8 0 012.2 8z",
5816
+ clipRule: "evenodd"
5817
+ }));
5818
+ }
5819
+
5820
+ /** @deprecated ValidationCheckFilledIcon is deprecated; use ValidationSuccessFilledIcon instead */
5821
+ function ValidationCheckFilledIcon(props) {
5822
+ console.warn('Design system warning: ValidationCheckFilledIcon is deprecated; use ValidationSuccessFilledIcon instead');
5823
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5824
+ fill: "none",
5825
+ viewBox: "0 0 16 16",
5793
5826
  width: props.width || props.size || '1em',
5794
5827
  height: props.height || props.size || '1em',
5795
5828
  className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5796
5829
  inline: undefined,
5797
5830
  color: props.color || 'currentColor'
5831
+ }), /*#__PURE__*/React__namespace.createElement("circle", {
5832
+ cx: 8,
5833
+ cy: 8,
5834
+ r: 6,
5835
+ fill: "#fff"
5798
5836
  }), /*#__PURE__*/React__namespace.createElement("path", {
5799
5837
  fill: "currentColor",
5800
5838
  fillRule: "evenodd",
5801
- d: "M7 0a7 7 0 100 14A7 7 0 007 0zm-.721 9.804a.636.636 0 01-.838.07l-.08-.07L3 7.374l.918-.944L5.82 8.386 10.082 4l.918.945-4.721 4.86z",
5839
+ d: "M8 15A7 7 0 108 1a7 7 0 000 14zm-.651-4.152l4.5-4.5L11 5.5 6.924 9.576 4.85 7.5 4 8.349l2.5 2.5a.6.6 0 00.849 0z",
5802
5840
  clipRule: "evenodd"
5803
5841
  }));
5804
5842
  }
5805
5843
 
5806
5844
  function ValidationErrorIcon(props) {
5807
5845
  return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5846
+ fill: "none",
5808
5847
  viewBox: "0 0 16 16",
5809
5848
  width: props.width || props.size || '1em',
5810
5849
  height: props.height || props.size || '1em',
5811
5850
  className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5812
5851
  inline: undefined,
5813
5852
  color: props.color || 'currentColor'
5853
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5854
+ fill: "currentColor",
5855
+ d: "M8 7.151l2.076-2.075.848.848L8.85 8l2.075 2.076-.848.848L8 8.85l-2.076 2.075-.848-.848L7.15 8 5.076 5.924l.848-.848L8 7.15z"
5814
5856
  }), /*#__PURE__*/React__namespace.createElement("path", {
5815
5857
  fill: "currentColor",
5816
5858
  fillRule: "evenodd",
5817
- d: "M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm3.475 10.343l-1.132 1.131L8 9.13l-2.343 2.345-1.132-1.131 2.343-2.344-2.343-2.343 1.132-1.131L8 6.868l2.343-2.343 1.132 1.131L9.13 8z",
5859
+ d: "M1 8a7 7 0 1114 0A7 7 0 011 8zm7-5.8a5.8 5.8 0 100 11.6A5.8 5.8 0 008 2.2z",
5818
5860
  clipRule: "evenodd"
5819
5861
  }));
5820
5862
  }
5821
5863
 
5822
- function ValidationExclamationIcon(props) {
5864
+ function ValidationErrorFilledIcon(props) {
5823
5865
  return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5866
+ fill: "none",
5824
5867
  viewBox: "0 0 16 16",
5825
5868
  width: props.width || props.size || '1em',
5826
5869
  height: props.height || props.size || '1em',
@@ -5830,28 +5873,143 @@ function ValidationExclamationIcon(props) {
5830
5873
  }), /*#__PURE__*/React__namespace.createElement("circle", {
5831
5874
  cx: 8,
5832
5875
  cy: 8,
5833
- r: 4.4,
5876
+ r: 6,
5834
5877
  fill: "transparent"
5835
5878
  }), /*#__PURE__*/React__namespace.createElement("path", {
5836
5879
  fill: "currentColor",
5837
5880
  fillRule: "evenodd",
5838
- d: "M8 1C4.1 1 1 4.1 1 8s3.1 7 7 7 7-3.1 7-7-3.1-7-7-7zm-.7 3h1.4v5.1H7.3V4zm.7 8.2c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9c0 .6-.4.9-.9.9z",
5881
+ d: "M8 15A7 7 0 108 1a7 7 0 000 14zm-2.924-4.924L7.15 8 5.076 5.924l.848-.848L8 7.152l2.076-2.076.848.848L8.85 8l2.075 2.076-.848.848L8 8.85l-2.076 2.075-.848-.848z",
5882
+ clipRule: "evenodd"
5883
+ }));
5884
+ }
5885
+
5886
+ function ValidationExclamationIcon(props) {
5887
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5888
+ fill: "none",
5889
+ viewBox: "0 0 16 16",
5890
+ width: props.width || props.size || '1em',
5891
+ height: props.height || props.size || '1em',
5892
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5893
+ inline: undefined,
5894
+ color: props.color || 'currentColor'
5895
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5896
+ fill: "currentColor",
5897
+ d: "M7.4 9V5.844h1.2V9H7.4z"
5898
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5899
+ fill: "currentColor",
5900
+ d: "M8 11.75a.75.75 0 100-1.5.75.75 0 000 1.5z"
5901
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5902
+ fill: "currentColor",
5903
+ fillRule: "evenodd",
5904
+ d: "M8 1.6a.6.6 0 01.52.299l6.5 11.196a.6.6 0 01-.519.901H1.5a.6.6 0 01-.519-.9l6.5-11.197a.6.6 0 01.52-.299zm5.46 11.197L8 3.395l-5.458 9.402H13.46z",
5905
+ clipRule: "evenodd"
5906
+ }));
5907
+ }
5908
+
5909
+ function ValidationExclamationFilledIcon(props) {
5910
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5911
+ fill: "none",
5912
+ viewBox: "0 0 16 16",
5913
+ width: props.width || props.size || '1em',
5914
+ height: props.height || props.size || '1em',
5915
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5916
+ inline: undefined,
5917
+ color: props.color || 'currentColor'
5918
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5919
+ fill: "transparent",
5920
+ d: "M8.365 4.217A.42.42 0 008 4a.42.42 0 00-.365.217l-4.578 8.129a.447.447 0 000 .436.42.42 0 00.365.218h9.155a.42.42 0 00.367-.218.447.447 0 00-.001-.436l-4.578-8.13z",
5921
+ className: "svg-exclamation"
5922
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5923
+ fill: "currentColor",
5924
+ fillRule: "evenodd",
5925
+ d: "M8 1.6a.6.6 0 01.52.299l6.5 11.196a.6.6 0 01-.519.901H1.5a.6.6 0 01-.519-.9l6.5-11.197a.6.6 0 01.52-.299zM7.4 9V5.844h1.2V9H7.4zm1.35 2a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",
5839
5926
  clipRule: "evenodd"
5840
5927
  }));
5841
5928
  }
5842
5929
 
5843
5930
  function ValidationInfoIcon(props) {
5844
5931
  return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5932
+ fill: "none",
5933
+ viewBox: "0 0 16 16",
5934
+ width: props.width || props.size || '1em',
5935
+ height: props.height || props.size || '1em',
5936
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5937
+ inline: undefined,
5938
+ color: props.color || 'currentColor'
5939
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5940
+ fill: "currentColor",
5941
+ d: "M6.25 10.15v1.2h3.5v-1.2H8.6V7.266a.6.6 0 00-.595-.6l-1.75-.016-.01 1.2 1.155.01v2.29H6.25z"
5942
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5943
+ fill: "currentColor",
5944
+ d: "M8 5.75a.75.75 0 100-1.5.75.75 0 000 1.5z"
5945
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5946
+ fill: "currentColor",
5947
+ fillRule: "evenodd",
5948
+ d: "M8 1a7 7 0 100 14.001A7 7 0 008 1zM2.2 8a5.8 5.8 0 1111.6 0A5.8 5.8 0 012.2 8z",
5949
+ clipRule: "evenodd"
5950
+ }));
5951
+ }
5952
+
5953
+ function ValidationInfoFilledIcon(props) {
5954
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5955
+ fill: "none",
5956
+ viewBox: "0 0 16 16",
5957
+ width: props.width || props.size || '1em',
5958
+ height: props.height || props.size || '1em',
5959
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5960
+ inline: undefined,
5961
+ color: props.color || 'currentColor'
5962
+ }), /*#__PURE__*/React__namespace.createElement("circle", {
5963
+ cx: 8,
5964
+ cy: 8,
5965
+ r: 6,
5966
+ fill: "transparent"
5967
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5968
+ fill: "currentColor",
5969
+ fillRule: "evenodd",
5970
+ d: "M8 15.002A7 7 0 108 1a7 7 0 000 14.002zm.82-10.283a.82.82 0 11-1.64 0 .82.82 0 011.64 0zM8 6.597H6.25v1.2H7.4v2.353H6.25v1.2h3.5v-1.2H8.6V7.197a.6.6 0 00-.6-.6z",
5971
+ clipRule: "evenodd"
5972
+ }));
5973
+ }
5974
+
5975
+ function ValidationSuccessIcon(props) {
5976
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5977
+ fill: "none",
5845
5978
  viewBox: "0 0 16 16",
5846
5979
  width: props.width || props.size || '1em',
5847
5980
  height: props.height || props.size || '1em',
5848
5981
  className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
5849
5982
  inline: undefined,
5850
5983
  color: props.color || 'currentColor'
5984
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5985
+ fill: "currentColor",
5986
+ d: "M7.424 10.924l4.5-4.5-.848-.848L7 9.65 4.924 7.576l-.848.848 2.5 2.5a.6.6 0 00.848 0z"
5987
+ }), /*#__PURE__*/React__namespace.createElement("path", {
5988
+ fill: "currentColor",
5989
+ fillRule: "evenodd",
5990
+ d: "M8 1a7 7 0 100 14A7 7 0 008 1zM2.2 8a5.8 5.8 0 1111.6 0A5.8 5.8 0 012.2 8z",
5991
+ clipRule: "evenodd"
5992
+ }));
5993
+ }
5994
+
5995
+ function ValidationSuccessFilledIcon(props) {
5996
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends({}, props, {
5997
+ fill: "none",
5998
+ viewBox: "0 0 16 16",
5999
+ width: props.width || props.size || '1em',
6000
+ height: props.height || props.size || '1em',
6001
+ className: 'eds-icon ' + (props.className || '') + (props.inline ? ' eds-icon--inline' : ''),
6002
+ inline: undefined,
6003
+ color: props.color || 'currentColor'
6004
+ }), /*#__PURE__*/React__namespace.createElement("circle", {
6005
+ cx: 8,
6006
+ cy: 8,
6007
+ r: 6,
6008
+ fill: "transparent"
5851
6009
  }), /*#__PURE__*/React__namespace.createElement("path", {
5852
6010
  fill: "currentColor",
5853
6011
  fillRule: "evenodd",
5854
- d: "M8 1C4.15 1 1 4.15 1 8s3.15 7 7 7 7-3.15 7-7-3.15-7-7-7zm.005 3a.875.875 0 110 1.75.875.875 0 010-1.75zM9.7 12.018H6.3v-1.4h1V8.199l-1 .001V6.8H8a.7.7 0 01.694.605L8.7 7.5l-.001 3.118H9.7v1.4z",
6012
+ d: "M8 15A7 7 0 108 1a7 7 0 000 14zm-.651-4.152l4.5-4.5L11 5.5 6.924 9.576 4.85 7.5 4 8.349l2.5 2.5a.6.6 0 00.849 0z",
5855
6013
  clipRule: "evenodd"
5856
6014
  }));
5857
6015
  }
@@ -6477,10 +6635,16 @@ exports.UsersIcon = UsersIcon;
6477
6635
  exports.VKTIcon = VKTIcon;
6478
6636
  exports.ValidTicketFilledIcon = ValidTicketFilledIcon;
6479
6637
  exports.ValidTicketIcon = ValidTicketIcon;
6638
+ exports.ValidationCheckFilledIcon = ValidationCheckFilledIcon;
6480
6639
  exports.ValidationCheckIcon = ValidationCheckIcon;
6640
+ exports.ValidationErrorFilledIcon = ValidationErrorFilledIcon;
6481
6641
  exports.ValidationErrorIcon = ValidationErrorIcon;
6642
+ exports.ValidationExclamationFilledIcon = ValidationExclamationFilledIcon;
6482
6643
  exports.ValidationExclamationIcon = ValidationExclamationIcon;
6644
+ exports.ValidationInfoFilledIcon = ValidationInfoFilledIcon;
6483
6645
  exports.ValidationInfoIcon = ValidationInfoIcon;
6646
+ exports.ValidationSuccessFilledIcon = ValidationSuccessFilledIcon;
6647
+ exports.ValidationSuccessIcon = ValidationSuccessIcon;
6484
6648
  exports.ValueIcon = ValueIcon;
6485
6649
  exports.VendingMachineIcon = VendingMachineIcon;
6486
6650
  exports.VerticalDotsIcon = VerticalDotsIcon;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entur/icons",
3
- "version": "6.15.4",
3
+ "version": "6.15.6",
4
4
  "license": "EUPL-1.2",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -46,7 +46,7 @@
46
46
  "rollup": "^2.66.0"
47
47
  },
48
48
  "dependencies": {
49
- "@entur/tokens": "^3.13.3"
49
+ "@entur/tokens": "^3.13.4"
50
50
  },
51
- "gitHead": "89d5de6d31962e236a5c147e129bf915576166b4"
51
+ "gitHead": "af2884729bb414d54d6cf9e9a28b2b6f7c74af74"
52
52
  }