@ovotech/element-native 5.4.3 → 5.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Accordion/Accordion.js +71 -33
- package/dist/components/Accordion/Group.js +12 -8
- package/dist/components/Accordion/Icon.js +51 -15
- package/dist/components/Accordion/index.js +9 -3
- package/dist/components/Accordion/styles.d.ts +9 -0
- package/dist/components/Accordion/styles.js +52 -13
- package/dist/components/Accordion/types.js +2 -1
- package/dist/components/ActionCard/ActionCard.js +74 -34
- package/dist/components/ActionCard/CloseIconShape.js +46 -6
- package/dist/components/ActionCard/IndicatorIconShape.js +46 -6
- package/dist/components/ActionCard/index.js +5 -1
- package/dist/components/ActionList/Action.d.ts +23 -0
- package/dist/components/ActionList/Action.js +29 -0
- package/dist/components/ActionList/ActionList.d.ts +11 -27
- package/dist/components/ActionList/ActionList.js +30 -23
- package/dist/components/ActionList/ActionListItems/DataListItem.d.ts +23 -0
- package/dist/components/ActionList/ActionListItems/DataListItem.js +21 -0
- package/dist/components/ActionList/ActionListItems/EditableListItem.d.ts +43 -0
- package/dist/components/ActionList/ActionListItems/EditableListItem.js +134 -0
- package/dist/components/ActionList/ActionListItems/NavigationListItem.d.ts +16 -0
- package/dist/components/ActionList/ActionListItems/NavigationListItem.js +30 -0
- package/dist/components/ActionList/ActionListItems/ProgressRing.d.ts +7 -0
- package/dist/components/ActionList/ActionListItems/ProgressRing.js +66 -0
- package/dist/components/ActionList/ActionListItems/ToggleListItem.d.ts +9 -0
- package/dist/components/ActionList/ActionListItems/ToggleListItem.js +13 -0
- package/dist/components/ActionList/ActionListItems/styles.d.ts +10433 -0
- package/dist/components/ActionList/ActionListItems/styles.js +171 -0
- package/dist/components/ActionList/components/ActionListHeading.d.ts +9 -0
- package/dist/components/ActionList/components/ActionListHeading.js +11 -0
- package/dist/components/ActionList/index.d.ts +6 -1
- package/dist/components/ActionList/index.js +15 -1
- package/dist/components/ActionList/styled.d.ts +1187 -7
- package/dist/components/ActionList/styled.js +83 -32
- package/dist/components/Badge/Badge.d.ts +3 -0
- package/dist/components/Badge/Badge.js +64 -15
- package/dist/components/Badge/index.js +5 -1
- package/dist/components/Button/Button.js +26 -10
- package/dist/components/Button/Button.styles.d.ts +12 -0
- package/dist/components/Button/Button.styles.js +65 -29
- package/dist/components/Button/index.js +6 -1
- package/dist/components/Card/Card.d.ts +7 -4
- package/dist/components/Card/Card.js +75 -36
- package/dist/components/Card/Card.styles.d.ts +11 -1
- package/dist/components/Card/Card.styles.js +23 -30
- package/dist/components/Card/index.js +5 -1
- package/dist/components/Cards/AccountCard/AccountCard.d.ts +2 -2
- package/dist/components/Cards/AccountCard/AccountCard.js +15 -11
- package/dist/components/Cards/AccountCard/AccountCard.styles.d.ts +24 -0
- package/dist/components/Cards/AccountCard/AccountCard.styles.js +18 -19
- package/dist/components/Cards/AccountCard/index.js +17 -1
- package/dist/components/Cards/BalanceCard/BalanceCard.d.ts +16 -7
- package/dist/components/Cards/BalanceCard/BalanceCard.js +16 -23
- package/dist/components/Cards/BalanceCard/BalanceCard.styles.d.ts +5321 -12
- package/dist/components/Cards/BalanceCard/BalanceCard.styles.js +70 -26
- package/dist/components/Cards/BalanceCard/BalanceCardErrorFallback.d.ts +12 -0
- package/dist/components/Cards/BalanceCard/BalanceCardErrorFallback.js +15 -0
- package/dist/components/Cards/BalanceCard/BalanceCardImages.d.ts +3 -0
- package/dist/components/Cards/BalanceCard/BalanceCardImages.js +54 -0
- package/dist/components/Cards/BalanceCard/Components.d.ts +20 -0
- package/dist/components/Cards/BalanceCard/Components.js +46 -0
- package/dist/components/Cards/BalanceCard/index.d.ts +2 -1
- package/dist/components/Cards/BalanceCard/index.js +7 -1
- package/dist/components/Cards/DisruptiveCard/DisruptiveCard.d.ts +13 -0
- package/dist/components/Cards/DisruptiveCard/DisruptiveCard.js +45 -0
- package/dist/components/Cards/DisruptiveCard/DisruptiveCard.styles.d.ts +580 -0
- package/dist/components/Cards/DisruptiveCard/DisruptiveCard.styles.js +11 -0
- package/dist/components/Cards/DisruptiveCard/index.d.ts +1 -0
- package/dist/components/Cards/DisruptiveCard/index.js +17 -0
- package/dist/components/Cards/HeroImageCard/HeroImageCard.d.ts +12 -0
- package/dist/components/Cards/HeroImageCard/HeroImageCard.js +65 -0
- package/dist/components/Cards/HeroImageCard/HeroImageCard.styles.d.ts +1741 -0
- package/dist/components/Cards/HeroImageCard/HeroImageCard.styles.js +27 -0
- package/dist/components/Cards/HeroImageCard/index.d.ts +1 -0
- package/dist/components/Cards/HeroImageCard/index.js +17 -0
- package/dist/components/Cards/IconDataCard/IconDataCard.d.ts +10 -16
- package/dist/components/Cards/IconDataCard/IconDataCard.js +16 -10
- package/dist/components/Cards/IconDataCard/IconDataCard.styles.d.ts +18 -3466
- package/dist/components/Cards/IconDataCard/IconDataCard.styles.js +14 -32
- package/dist/components/Cards/IconDataCard/index.js +17 -1
- package/dist/components/Cards/IconTextCard/IconTextCard.d.ts +2 -2
- package/dist/components/Cards/IconTextCard/IconTextCard.js +13 -24
- package/dist/components/Cards/IconTextCard/IconTextCard.styles.d.ts +11 -581
- package/dist/components/Cards/IconTextCard/IconTextCard.styles.js +13 -19
- package/dist/components/Cards/IconTextCard/index.js +17 -1
- package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.d.ts +14 -0
- package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.js +26 -0
- package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.styles.d.ts +2903 -0
- package/dist/components/Cards/IllustrationTextCard/IllustrationTextCard.styles.js +34 -0
- package/dist/components/Cards/IllustrationTextCard/index.d.ts +1 -0
- package/dist/components/Cards/IllustrationTextCard/index.js +17 -0
- package/dist/components/Cards/LinkTextCard/LinkTextCard.d.ts +4 -4
- package/dist/components/Cards/LinkTextCard/LinkTextCard.js +16 -10
- package/dist/components/Cards/LinkTextCard/LinkTextCard.styles.d.ts +25 -1169
- package/dist/components/Cards/LinkTextCard/LinkTextCard.styles.js +25 -33
- package/dist/components/Cards/LinkTextCard/index.js +17 -1
- package/dist/components/Cards/ProgressBarCard/ProgressBar/EPCBar.js +10 -6
- package/dist/components/Cards/ProgressBarCard/ProgressBar/EPCMarkers.js +47 -9
- package/dist/components/Cards/ProgressBarCard/ProgressBar/ValueBar.js +15 -11
- package/dist/components/Cards/ProgressBarCard/ProgressBarCard.d.ts +1 -1
- package/dist/components/Cards/ProgressBarCard/ProgressBarCard.js +25 -25
- package/dist/components/Cards/ProgressBarCard/ProgressBarCard.styles.d.ts +35 -1737
- package/dist/components/Cards/ProgressBarCard/ProgressBarCard.styles.js +21 -28
- package/dist/components/Cards/ProgressBarCard/index.js +17 -1
- package/dist/components/Cards/QuickLinkCard/QuickLinkCard.d.ts +12 -0
- package/dist/components/Cards/QuickLinkCard/QuickLinkCard.js +27 -0
- package/dist/components/Cards/QuickLinkCard/QuickLinkCard.styles.d.ts +2897 -0
- package/dist/components/Cards/QuickLinkCard/QuickLinkCard.styles.js +31 -0
- package/dist/components/Cards/QuickLinkCard/index.d.ts +1 -0
- package/dist/components/Cards/QuickLinkCard/index.js +17 -0
- package/dist/components/Cards/ServicesImageCard/ServicesImageCard.d.ts +12 -0
- package/dist/components/Cards/ServicesImageCard/ServicesImageCard.js +24 -0
- package/dist/components/Cards/ServicesImageCard/ServicesImageCard.styles.d.ts +2902 -0
- package/dist/components/Cards/ServicesImageCard/ServicesImageCard.styles.js +38 -0
- package/dist/components/Cards/ServicesImageCard/index.d.ts +1 -0
- package/dist/components/Cards/ServicesImageCard/index.js +17 -0
- package/dist/components/Cards/components.d.ts +15 -0
- package/dist/components/Cards/components.js +24 -0
- package/dist/components/Cards/index.d.ts +6 -1
- package/dist/components/Cards/index.js +26 -6
- package/dist/components/Cards/shared.styles.d.ts +5792 -0
- package/dist/components/Cards/shared.styles.js +55 -0
- package/dist/components/Cards/types.js +2 -1
- package/dist/components/Cards/utils.d.ts +4 -0
- package/dist/components/Cards/utils.js +29 -0
- package/dist/components/Checkbox/Checkbox.d.ts +2 -13
- package/dist/components/Checkbox/Checkbox.js +27 -54
- package/dist/components/Checkbox/CheckboxField.js +29 -14
- package/dist/components/Checkbox/index.js +7 -2
- package/dist/components/Checkbox/styled.d.ts +3483 -0
- package/dist/components/Checkbox/styled.js +52 -0
- package/dist/components/Checkbox/types.d.ts +16 -0
- package/dist/components/Checkbox/types.js +2 -0
- package/dist/components/CurrencyField/CurrencyField.js +21 -5
- package/dist/components/CurrencyField/index.js +5 -1
- package/dist/components/CurrencyInput/CurrencyInput.d.ts +2 -1
- package/dist/components/CurrencyInput/CurrencyInput.js +32 -10
- package/dist/components/CurrencyInput/index.js +5 -1
- package/dist/components/CurrencyInput/styled.d.ts +2318 -0
- package/dist/components/CurrencyInput/styled.js +39 -0
- package/dist/components/DataTable/DataTable.js +29 -13
- package/dist/components/DataTable/TableRow.js +18 -14
- package/dist/components/DataTable/index.js +21 -3
- package/dist/components/DataTable/styles.d.ts +39 -0
- package/dist/components/DataTable/styles.js +78 -42
- package/dist/components/DataTable/types.js +2 -1
- package/dist/components/DateField/DateField.js +66 -32
- package/dist/components/DateField/index.js +5 -1
- package/dist/components/Disclosure/Disclosure.d.ts +3 -0
- package/dist/components/Disclosure/Disclosure.js +70 -21
- package/dist/components/Disclosure/index.js +17 -1
- package/dist/components/Display/Display.js +69 -16
- package/dist/components/Display/index.js +9 -1
- package/dist/components/Divider/Divider.d.ts +1 -1
- package/dist/components/Divider/Divider.js +46 -7
- package/dist/components/Divider/index.js +5 -1
- package/dist/components/Em/Em.d.ts +3 -0
- package/dist/components/Em/Em.js +8 -2
- package/dist/components/Em/index.js +5 -1
- package/dist/components/EmailField/EmailField.js +21 -5
- package/dist/components/EmailField/index.js +5 -1
- package/dist/components/EmailInput/EmailInput.d.ts +4 -1
- package/dist/components/EmailInput/EmailInput.js +37 -4
- package/dist/components/EmailInput/index.js +5 -1
- package/dist/components/EmptyState/EmptyState.d.ts +2 -0
- package/dist/components/EmptyState/EmptyState.js +17 -0
- package/dist/components/EmptyState/EmptyState.test.d.ts +1 -0
- package/dist/components/EmptyState/EmptyState.test.js +92 -0
- package/dist/components/EmptyState/index.d.ts +1 -0
- package/dist/components/EmptyState/index.js +17 -0
- package/dist/components/EmptyState/styles.d.ts +1156 -0
- package/dist/components/EmptyState/styles.js +23 -0
- package/dist/components/EmptyState/types.d.ts +18 -0
- package/dist/components/EmptyState/types.js +2 -0
- package/dist/components/ErrorText/ErrorText.d.ts +3 -0
- package/dist/components/ErrorText/ErrorText.js +47 -11
- package/dist/components/ErrorText/index.js +5 -1
- package/dist/components/ErrorWrapper/ErrorFallback.js +30 -16
- package/dist/components/ErrorWrapper/ErrorWrapper.js +32 -13
- package/dist/components/ErrorWrapper/config.js +5 -2
- package/dist/components/ErrorWrapper/index.js +5 -1
- package/dist/components/ErrorWrapper/types.js +6 -2
- package/dist/components/Field/Field.d.ts +3 -2
- package/dist/components/Field/Field.js +33 -21
- package/dist/components/Field/index.js +17 -1
- package/dist/components/FormGroup/FormGroup.js +26 -6
- package/dist/components/FormGroup/index.js +5 -1
- package/dist/components/Grid/Col.d.ts +3 -0
- package/dist/components/Grid/Col.js +46 -10
- package/dist/components/Grid/Row.js +62 -12
- package/dist/components/Grid/index.js +7 -2
- package/dist/components/Heading/Heading.js +69 -16
- package/dist/components/Heading/index.js +8 -1
- package/dist/components/HintText/HintText.d.ts +3 -0
- package/dist/components/HintText/HintText.js +47 -11
- package/dist/components/HintText/index.js +5 -1
- package/dist/components/Icon/Icon.js +24 -8
- package/dist/components/Icon/index.js +5 -1
- package/dist/components/Input/Input.d.ts +2 -1
- package/dist/components/Input/Input.js +27 -70
- package/dist/components/Input/styled.d.ts +1747 -0
- package/dist/components/Input/styled.js +96 -0
- package/dist/components/LabelText/LabelText.d.ts +3 -0
- package/dist/components/LabelText/LabelText.js +45 -9
- package/dist/components/LabelText/index.js +5 -1
- package/dist/components/LargeValueReference/LargeValueReference.d.ts +11 -0
- package/dist/components/LargeValueReference/LargeValueReference.js +49 -0
- package/dist/components/LargeValueReference/index.d.ts +1 -0
- package/dist/components/LargeValueReference/index.js +17 -0
- package/dist/components/LargeValueReference/styles.d.ts +1741 -0
- package/dist/components/LargeValueReference/styles.js +29 -0
- package/dist/components/LineThrough/LineThrough.d.ts +3 -0
- package/dist/components/LineThrough/LineThrough.js +8 -2
- package/dist/components/LineThrough/index.js +5 -1
- package/dist/components/Link/Link.js +63 -14
- package/dist/components/Link/index.js +6 -1
- package/dist/components/List/List.js +19 -14
- package/dist/components/List/index.js +7 -1
- package/dist/components/List/styled.d.ts +12 -0
- package/dist/components/List/styled.js +52 -16
- package/dist/components/Margin/Margin.d.ts +3 -0
- package/dist/components/Margin/Margin.js +38 -20
- package/dist/components/Margin/index.js +5 -1
- package/dist/components/NavHeader/NavHeader.js +38 -38
- package/dist/components/NavHeader/NavHeader.styles.d.ts +33 -0
- package/dist/components/NavHeader/NavHeader.styles.js +80 -41
- package/dist/components/NavHeader/NavHeaderComponents/ActionButtons.js +14 -9
- package/dist/components/NavHeader/NavHeaderComponents/NavButton.js +62 -10
- package/dist/components/NavHeader/NavHeaderComponents/StepCounterBars.js +8 -4
- package/dist/components/NavHeader/index.js +5 -1
- package/dist/components/NavHeader/utils.js +7 -2
- package/dist/components/NavIcon/NavIcon.js +54 -16
- package/dist/components/NavIcon/index.js +5 -1
- package/dist/components/Notification/Notification.d.ts +7 -1159
- package/dist/components/Notification/Notification.js +46 -73
- package/dist/components/Notification/Notification.styles.d.ts +5210 -0
- package/dist/components/Notification/Notification.styles.js +115 -0
- package/dist/components/Notification/index.js +9 -1
- package/dist/components/Notification/utils.d.ts +5 -0
- package/dist/components/Notification/utils.js +27 -0
- package/dist/components/NumberField/NumberField.js +21 -5
- package/dist/components/NumberField/index.js +5 -1
- package/dist/components/NumberInput/NumberInput.js +7 -4
- package/dist/components/NumberInput/index.js +5 -1
- package/dist/components/P/P.js +48 -11
- package/dist/components/P/index.js +5 -1
- package/dist/components/PasswordField/PasswordField.js +21 -5
- package/dist/components/PasswordField/index.js +5 -1
- package/dist/components/PasswordInput/PasswordInput.js +9 -6
- package/dist/components/PasswordInput/PasswordInput.styled.d.ts +4 -3
- package/dist/components/PasswordInput/PasswordInput.styled.js +46 -8
- package/dist/components/PasswordInput/PasswordVisibilityToggle.js +13 -14
- package/dist/components/PasswordInput/index.js +5 -1
- package/dist/components/PhoneField/PhoneField.js +21 -5
- package/dist/components/PhoneField/index.js +5 -1
- package/dist/components/PhoneInput/PhoneInput.js +7 -3
- package/dist/components/PhoneInput/index.js +5 -1
- package/dist/components/Pictogram/Pictogram.js +24 -8
- package/dist/components/Pictogram/index.js +5 -1
- package/dist/components/ProductCarousel/NavigationDots.js +50 -14
- package/dist/components/ProductCarousel/ProductCarousel.js +74 -38
- package/dist/components/ProductCarousel/anchor-point.js +5 -1
- package/dist/components/ProductCarousel/index.js +5 -1
- package/dist/components/Radio/Radio.js +47 -28
- package/dist/components/Radio/RadioField.js +30 -15
- package/dist/components/Radio/index.js +7 -2
- package/dist/components/RadioCard/RadioCard.d.ts +2 -1
- package/dist/components/RadioCard/RadioCard.js +25 -55
- package/dist/components/RadioCard/RadioCard.styles.d.ts +2901 -0
- package/dist/components/RadioCard/RadioCard.styles.js +97 -0
- package/dist/components/RadioCard/index.js +5 -1
- package/dist/components/RemoteImage/RemoteImage.js +26 -23
- package/dist/components/RemoteImage/index.js +5 -1
- package/dist/components/RemoteImage/types.js +2 -1
- package/dist/components/ScreenView/ScreenView.js +48 -11
- package/dist/components/ScreenView/index.js +17 -1
- package/dist/components/SegmentedControls/SegmentedControls.js +75 -23
- package/dist/components/SegmentedControls/components/SegmentButton.js +64 -24
- package/dist/components/SegmentedControls/index.js +5 -2
- package/dist/components/SelectField/Select.d.ts +5 -579
- package/dist/components/SelectField/Select.js +24 -84
- package/dist/components/SelectField/SelectField.d.ts +3 -3
- package/dist/components/SelectField/SelectField.js +22 -4
- package/dist/components/SelectField/index.js +5 -1
- package/dist/components/SelectField/styled.d.ts +4642 -0
- package/dist/components/SelectField/styled.js +118 -0
- package/dist/components/SkeletonAnimation/SkeletonAnimation.js +16 -14
- package/dist/components/SkeletonAnimation/index.js +5 -1
- package/dist/components/SkeletonButton/SkeletonButton.js +30 -9
- package/dist/components/SkeletonButton/index.js +5 -1
- package/dist/components/SkeletonCircle/SkeletonCircle.js +29 -8
- package/dist/components/SkeletonCircle/index.js +5 -1
- package/dist/components/SkeletonHeading/SkeletonHeading.js +29 -6
- package/dist/components/SkeletonHeading/index.js +5 -1
- package/dist/components/SkeletonText/SkeletonText.d.ts +2 -1
- package/dist/components/SkeletonText/SkeletonText.js +36 -15
- package/dist/components/SkeletonText/index.js +5 -1
- package/dist/components/Spinner/Spinner.js +53 -16
- package/dist/components/Spinner/index.js +5 -1
- package/dist/components/Stack/Stack.js +33 -15
- package/dist/components/Stack/index.js +5 -1
- package/dist/components/Stretch/Stretch.js +45 -8
- package/dist/components/Stretch/index.js +17 -1
- package/dist/components/Strong/Strong.d.ts +3 -0
- package/dist/components/Strong/Strong.js +8 -2
- package/dist/components/Strong/index.js +5 -1
- package/dist/components/SubLabelText/SubLabelText.d.ts +3 -0
- package/dist/components/SubLabelText/SubLabelText.js +45 -9
- package/dist/components/SubLabelText/index.js +5 -1
- package/dist/components/Tabs/Tab.d.ts +3 -0
- package/dist/components/Tabs/Tab.js +65 -16
- package/dist/components/Tabs/TabList.js +62 -13
- package/dist/components/Tabs/TabPanel.js +57 -8
- package/dist/components/Tabs/Tabs.js +69 -20
- package/dist/components/Tabs/index.js +11 -4
- package/dist/components/TextField/TextField.js +21 -5
- package/dist/components/TextField/index.js +5 -1
- package/dist/components/TextInput/TextInput.js +21 -4
- package/dist/components/TextInput/index.js +5 -1
- package/dist/components/TextareaField/TextareaField.js +21 -5
- package/dist/components/TextareaField/index.js +5 -1
- package/dist/components/TextareaInput/TextareaInput.js +66 -12
- package/dist/components/TextareaInput/index.js +5 -1
- package/dist/components/Toast/Toast.js +96 -55
- package/dist/components/Toast/index.js +6 -1
- package/dist/components/Toggle/Toggle.d.ts +3 -1
- package/dist/components/Toggle/Toggle.js +32 -17
- package/dist/components/Toggle/index.js +5 -1
- package/dist/components/Toggle/styles.d.ts +13 -0
- package/dist/components/Toggle/styles.js +24 -18
- package/dist/components/index.d.ts +4 -1
- package/dist/components/index.js +76 -57
- package/dist/esm/components/Accordion/Accordion.js +3 -3
- package/dist/esm/components/ActionCard/ActionCard.js +2 -2
- package/dist/esm/components/ActionCard/CloseIconShape.js +1 -1
- package/dist/esm/components/ActionCard/IndicatorIconShape.js +1 -1
- package/dist/esm/components/ActionList/Action.js +26 -0
- package/dist/esm/components/ActionList/ActionList.js +23 -20
- package/dist/esm/components/ActionList/ActionListItems/DataListItem.js +17 -0
- package/dist/esm/components/ActionList/ActionListItems/EditableListItem.js +131 -0
- package/dist/esm/components/ActionList/ActionListItems/NavigationListItem.js +26 -0
- package/dist/esm/components/ActionList/ActionListItems/ProgressRing.js +29 -0
- package/dist/esm/components/ActionList/ActionListItems/ToggleListItem.js +9 -0
- package/dist/esm/components/ActionList/ActionListItems/styles.js +135 -0
- package/dist/esm/components/ActionList/components/ActionListHeading.js +7 -0
- package/dist/esm/components/ActionList/index.js +6 -1
- package/dist/esm/components/ActionList/styled.js +23 -8
- package/dist/esm/components/Badge/Badge.js +16 -4
- package/dist/esm/components/Button/Button.js +16 -4
- package/dist/esm/components/Button/Button.styles.js +1 -1
- package/dist/esm/components/Card/Card.js +57 -23
- package/dist/esm/components/Card/Card.styles.js +11 -24
- package/dist/esm/components/Cards/AccountCard/AccountCard.js +2 -2
- package/dist/esm/components/Cards/AccountCard/AccountCard.styles.js +2 -9
- package/dist/esm/components/Cards/BalanceCard/BalanceCard.js +12 -23
- package/dist/esm/components/Cards/BalanceCard/BalanceCard.styles.js +61 -23
- package/dist/esm/components/Cards/BalanceCard/BalanceCardErrorFallback.js +11 -0
- package/dist/esm/components/Cards/BalanceCard/BalanceCardImages.js +15 -0
- package/dist/esm/components/Cards/BalanceCard/Components.js +40 -0
- package/dist/esm/components/Cards/BalanceCard/index.js +2 -1
- package/dist/esm/components/Cards/DisruptiveCard/DisruptiveCard.js +41 -0
- package/dist/esm/components/Cards/DisruptiveCard/DisruptiveCard.styles.js +5 -0
- package/dist/esm/components/Cards/DisruptiveCard/index.js +1 -0
- package/dist/esm/components/Cards/HeroImageCard/HeroImageCard.js +28 -0
- package/dist/esm/components/Cards/HeroImageCard/HeroImageCard.styles.js +21 -0
- package/dist/esm/components/Cards/HeroImageCard/index.js +1 -0
- package/dist/esm/components/Cards/IconDataCard/IconDataCard.js +8 -6
- package/dist/esm/components/Cards/IconDataCard/IconDataCard.styles.js +3 -27
- package/dist/esm/components/Cards/IconTextCard/IconTextCard.js +8 -23
- package/dist/esm/components/Cards/IconTextCard/IconTextCard.styles.js +4 -16
- package/dist/esm/components/Cards/IllustrationTextCard/IllustrationTextCard.js +22 -0
- package/dist/esm/components/Cards/IllustrationTextCard/IllustrationTextCard.styles.js +28 -0
- package/dist/esm/components/Cards/IllustrationTextCard/index.js +1 -0
- package/dist/esm/components/Cards/LinkTextCard/LinkTextCard.js +11 -9
- package/dist/esm/components/Cards/LinkTextCard/LinkTextCard.styles.js +15 -29
- package/dist/esm/components/Cards/ProgressBarCard/ProgressBar/ValueBar.js +1 -1
- package/dist/esm/components/Cards/ProgressBarCard/ProgressBarCard.js +6 -13
- package/dist/esm/components/Cards/ProgressBarCard/ProgressBarCard.styles.js +6 -19
- package/dist/esm/components/Cards/QuickLinkCard/QuickLinkCard.js +23 -0
- package/dist/esm/components/Cards/QuickLinkCard/QuickLinkCard.styles.js +25 -0
- package/dist/esm/components/Cards/QuickLinkCard/index.js +1 -0
- package/dist/esm/components/Cards/ServicesImageCard/ServicesImageCard.js +20 -0
- package/dist/esm/components/Cards/ServicesImageCard/ServicesImageCard.styles.js +32 -0
- package/dist/esm/components/Cards/ServicesImageCard/index.js +1 -0
- package/dist/esm/components/Cards/components.js +19 -0
- package/dist/esm/components/Cards/index.js +6 -1
- package/dist/esm/components/Cards/shared.styles.js +49 -0
- package/dist/esm/components/Cards/utils.js +23 -0
- package/dist/esm/components/Checkbox/Checkbox.js +19 -49
- package/dist/esm/components/Checkbox/CheckboxField.js +15 -3
- package/dist/esm/components/Checkbox/styled.js +46 -0
- package/dist/esm/components/Checkbox/types.js +1 -0
- package/dist/esm/components/CurrencyField/CurrencyField.js +14 -2
- package/dist/esm/components/CurrencyInput/CurrencyInput.js +25 -6
- package/dist/esm/components/CurrencyInput/styled.js +33 -0
- package/dist/esm/components/DataTable/DataTable.js +14 -2
- package/dist/esm/components/DataTable/TableRow.js +5 -5
- package/dist/esm/components/DateField/DateField.js +1 -4
- package/dist/esm/components/Disclosure/Disclosure.js +15 -3
- package/dist/esm/components/Display/Display.js +18 -6
- package/dist/esm/components/Divider/Divider.js +3 -1
- package/dist/esm/components/EmailField/EmailField.js +14 -2
- package/dist/esm/components/EmailInput/EmailInput.js +31 -1
- package/dist/esm/components/EmptyState/EmptyState.js +13 -0
- package/dist/esm/components/EmptyState/EmptyState.test.js +90 -0
- package/dist/esm/components/EmptyState/index.js +1 -0
- package/dist/esm/components/EmptyState/styles.js +17 -0
- package/dist/esm/components/EmptyState/types.js +1 -0
- package/dist/esm/components/ErrorWrapper/ErrorFallback.js +14 -2
- package/dist/esm/components/ErrorWrapper/ErrorWrapper.js +17 -4
- package/dist/esm/components/ErrorWrapper/config.js +1 -1
- package/dist/esm/components/ErrorWrapper/types.js +1 -0
- package/dist/esm/components/Field/Field.js +15 -7
- package/dist/esm/components/FormGroup/FormGroup.js +15 -1
- package/dist/esm/components/Grid/Row.js +15 -1
- package/dist/esm/components/Heading/Heading.js +18 -6
- package/dist/esm/components/Icon/Icon.js +14 -2
- package/dist/esm/components/Input/Input.js +18 -64
- package/dist/esm/components/Input/styled.js +60 -0
- package/dist/esm/components/LargeValueReference/LargeValueReference.js +45 -0
- package/dist/esm/components/LargeValueReference/index.js +1 -0
- package/dist/esm/components/LargeValueReference/styles.js +23 -0
- package/dist/esm/components/Link/Link.js +15 -3
- package/dist/esm/components/Margin/Margin.js +14 -2
- package/dist/esm/components/NavHeader/NavHeader.js +1 -5
- package/dist/esm/components/NavHeader/NavHeaderComponents/ActionButtons.js +3 -2
- package/dist/esm/components/NavHeader/NavHeaderComponents/NavButton.js +18 -3
- package/dist/esm/components/NavIcon/NavIcon.js +2 -1
- package/dist/esm/components/Notification/Notification.js +33 -68
- package/dist/esm/components/Notification/Notification.styles.js +79 -0
- package/dist/esm/components/Notification/utils.js +21 -0
- package/dist/esm/components/NumberField/NumberField.js +14 -2
- package/dist/esm/components/NumberInput/NumberInput.js +1 -1
- package/dist/esm/components/P/P.js +1 -1
- package/dist/esm/components/PasswordField/PasswordField.js +14 -2
- package/dist/esm/components/PasswordInput/PasswordInput.js +1 -1
- package/dist/esm/components/PasswordInput/PasswordInput.styled.js +5 -3
- package/dist/esm/components/PasswordInput/PasswordVisibilityToggle.js +2 -8
- package/dist/esm/components/PhoneField/PhoneField.js +14 -2
- package/dist/esm/components/PhoneInput/PhoneInput.js +1 -1
- package/dist/esm/components/Pictogram/Pictogram.js +14 -2
- package/dist/esm/components/ProductCarousel/NavigationDots.js +3 -3
- package/dist/esm/components/ProductCarousel/ProductCarousel.js +4 -7
- package/dist/esm/components/Radio/Radio.js +20 -7
- package/dist/esm/components/Radio/RadioField.js +15 -3
- package/dist/esm/components/RadioCard/RadioCard.js +18 -52
- package/dist/esm/components/RadioCard/RadioCard.styles.js +61 -0
- package/dist/esm/components/RemoteImage/RemoteImage.js +2 -2
- package/dist/esm/components/SegmentedControls/SegmentedControls.js +27 -12
- package/dist/esm/components/SegmentedControls/components/SegmentButton.js +2 -2
- package/dist/esm/components/SelectField/Select.js +7 -74
- package/dist/esm/components/SelectField/SelectField.js +16 -2
- package/dist/esm/components/SelectField/styled.js +82 -0
- package/dist/esm/components/SkeletonAnimation/SkeletonAnimation.js +0 -2
- package/dist/esm/components/SkeletonButton/SkeletonButton.js +15 -1
- package/dist/esm/components/SkeletonCircle/SkeletonCircle.js +15 -1
- package/dist/esm/components/SkeletonHeading/SkeletonHeading.js +17 -1
- package/dist/esm/components/SkeletonText/SkeletonText.js +20 -6
- package/dist/esm/components/Stack/Stack.js +14 -2
- package/dist/esm/components/Stretch/Stretch.js +1 -1
- package/dist/esm/components/Tabs/Tab.js +14 -2
- package/dist/esm/components/Tabs/TabList.js +16 -4
- package/dist/esm/components/Tabs/TabPanel.js +14 -2
- package/dist/esm/components/Tabs/Tabs.js +15 -3
- package/dist/esm/components/TextField/TextField.js +14 -2
- package/dist/esm/components/TextInput/TextInput.js +15 -1
- package/dist/esm/components/TextareaField/TextareaField.js +14 -2
- package/dist/esm/components/TextareaInput/TextareaInput.js +25 -7
- package/dist/esm/components/Toast/Toast.js +8 -5
- package/dist/esm/components/Toggle/Toggle.js +17 -6
- package/dist/esm/components/Toggle/styles.js +3 -3
- package/dist/esm/components/index.js +4 -1
- package/dist/esm/hooks/use-font-scaling.js +32 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/providers/IconsProvider.js +1 -4
- package/dist/esm/providers/PictogramsProvider.js +2 -5
- package/dist/esm/providers/icons/AI.js +1 -1
- package/dist/esm/providers/icons/Address.js +1 -1
- package/dist/esm/providers/icons/Advice.js +1 -1
- package/dist/esm/providers/icons/Archive.js +1 -1
- package/dist/esm/providers/icons/ArrowDown.js +1 -1
- package/dist/esm/providers/icons/ArrowLeft.js +1 -1
- package/dist/esm/providers/icons/ArrowRight.js +1 -1
- package/dist/esm/providers/icons/ArrowUp.js +1 -1
- package/dist/esm/providers/icons/Award.js +1 -1
- package/dist/esm/providers/icons/Battery.js +1 -1
- package/dist/esm/providers/icons/BritishSignLanguage.js +1 -1
- package/dist/esm/providers/icons/Cal.js +1 -1
- package/dist/esm/providers/icons/CalBook.js +1 -1
- package/dist/esm/providers/icons/CaretArrowDown.js +1 -1
- package/dist/esm/providers/icons/CaretArrowLeft.js +1 -1
- package/dist/esm/providers/icons/CaretArrowRight.js +1 -1
- package/dist/esm/providers/icons/CaretArrowUp.js +1 -1
- package/dist/esm/providers/icons/CaretDown.js +1 -1
- package/dist/esm/providers/icons/CaretLeft.js +1 -1
- package/dist/esm/providers/icons/CaretRight.js +1 -1
- package/dist/esm/providers/icons/CaretUp.js +1 -1
- package/dist/esm/providers/icons/Chart.js +1 -1
- package/dist/esm/providers/icons/ChartFilled.js +1 -1
- package/dist/esm/providers/icons/Check.js +1 -1
- package/dist/esm/providers/icons/CheckCircle.js +1 -1
- package/dist/esm/providers/icons/ChevronDown.js +1 -1
- package/dist/esm/providers/icons/ChevronDownSmall.js +1 -1
- package/dist/esm/providers/icons/ChevronLeft.js +1 -1
- package/dist/esm/providers/icons/ChevronLeftSmall.js +1 -1
- package/dist/esm/providers/icons/ChevronLeftSmallFirst.js +1 -1
- package/dist/esm/providers/icons/ChevronRight.js +1 -1
- package/dist/esm/providers/icons/ChevronRightSmall.js +1 -1
- package/dist/esm/providers/icons/ChevronRightSmallLast.js +1 -1
- package/dist/esm/providers/icons/ChevronUp.js +1 -1
- package/dist/esm/providers/icons/ChevronUpSmall.js +1 -1
- package/dist/esm/providers/icons/Circle.js +1 -1
- package/dist/esm/providers/icons/CloseCircle.js +1 -1
- package/dist/esm/providers/icons/Copy.js +1 -1
- package/dist/esm/providers/icons/Cross.js +1 -1
- package/dist/esm/providers/icons/Doc.js +1 -1
- package/dist/esm/providers/icons/Dollar.js +1 -1
- package/dist/esm/providers/icons/Dots.js +1 -1
- package/dist/esm/providers/icons/Download.js +1 -1
- package/dist/esm/providers/icons/Eco.js +1 -1
- package/dist/esm/providers/icons/EcoHome.js +1 -1
- package/dist/esm/providers/icons/Edit.js +1 -1
- package/dist/esm/providers/icons/ElectricCar.js +1 -1
- package/dist/esm/providers/icons/ElectricHome.js +1 -1
- package/dist/esm/providers/icons/Electricity.js +1 -1
- package/dist/esm/providers/icons/Ellipsis.js +1 -1
- package/dist/esm/providers/icons/EnergyAdvice.js +1 -1
- package/dist/esm/providers/icons/Equals.js +1 -1
- package/dist/esm/providers/icons/Euro.js +1 -1
- package/dist/esm/providers/icons/Gas.js +1 -1
- package/dist/esm/providers/icons/GlobeAddress.js +1 -1
- package/dist/esm/providers/icons/HeatPump.js +1 -1
- package/dist/esm/providers/icons/Help.js +1 -1
- package/dist/esm/providers/icons/HelpFilled.js +1 -1
- package/dist/esm/providers/icons/Hide.js +1 -1
- package/dist/esm/providers/icons/Home.js +1 -1
- package/dist/esm/providers/icons/HomeFilled.js +1 -1
- package/dist/esm/providers/icons/HydroPower.js +1 -1
- package/dist/esm/providers/icons/Info.js +1 -1
- package/dist/esm/providers/icons/Link.js +1 -1
- package/dist/esm/providers/icons/Logo.js +1 -1
- package/dist/esm/providers/icons/Mail.js +1 -1
- package/dist/esm/providers/icons/MailOpen.js +1 -1
- package/dist/esm/providers/icons/Menu.js +1 -1
- package/dist/esm/providers/icons/Message.js +1 -1
- package/dist/esm/providers/icons/MessageFilled.js +1 -1
- package/dist/esm/providers/icons/Minus.js +1 -1
- package/dist/esm/providers/icons/Mobile.js +1 -1
- package/dist/esm/providers/icons/NewWindow.js +1 -1
- package/dist/esm/providers/icons/OvoLive.js +1 -1
- package/dist/esm/providers/icons/OvoLiveFilled.js +1 -1
- package/dist/esm/providers/icons/Pause.js +1 -1
- package/dist/esm/providers/icons/PaymentCard.js +1 -1
- package/dist/esm/providers/icons/PaymentCardFilled.js +1 -1
- package/dist/esm/providers/icons/Paypoint.js +1 -1
- package/dist/esm/providers/icons/Phone.js +1 -1
- package/dist/esm/providers/icons/Plus.js +1 -1
- package/dist/esm/providers/icons/PlusFilled.js +1 -1
- package/dist/esm/providers/icons/Pound.js +1 -1
- package/dist/esm/providers/icons/Pricing.js +1 -1
- package/dist/esm/providers/icons/PricingFilled.js +1 -1
- package/dist/esm/providers/icons/Search.js +1 -1
- package/dist/esm/providers/icons/Security.js +1 -1
- package/dist/esm/providers/icons/Send.js +1 -1
- package/dist/esm/providers/icons/Share.js +1 -1
- package/dist/esm/providers/icons/Shop.js +1 -1
- package/dist/esm/providers/icons/ShopFilled.js +1 -1
- package/dist/esm/providers/icons/Show.js +1 -1
- package/dist/esm/providers/icons/SmartHome.js +1 -1
- package/dist/esm/providers/icons/SmartMeter.js +1 -1
- package/dist/esm/providers/icons/Solar.js +1 -1
- package/dist/esm/providers/icons/Star.js +1 -1
- package/dist/esm/providers/icons/StarFilled.js +1 -1
- package/dist/esm/providers/icons/Sun.js +1 -1
- package/dist/esm/providers/icons/Switch.js +1 -1
- package/dist/esm/providers/icons/ThumbsDown.js +1 -1
- package/dist/esm/providers/icons/ThumbsDownFilled.js +1 -1
- package/dist/esm/providers/icons/ThumbsUp.js +1 -1
- package/dist/esm/providers/icons/ThumbsUpFilled.js +1 -1
- package/dist/esm/providers/icons/Torch.js +1 -1
- package/dist/esm/providers/icons/Trees.js +1 -1
- package/dist/esm/providers/icons/Tune.js +1 -1
- package/dist/esm/providers/icons/User.js +1 -1
- package/dist/esm/providers/icons/UserFilled.js +1 -1
- package/dist/esm/providers/icons/Wallet.js +1 -1
- package/dist/esm/providers/icons/WalletFilled.js +1 -1
- package/dist/esm/providers/icons/WarmHome.js +1 -1
- package/dist/esm/providers/icons/Warning.js +1 -1
- package/dist/esm/providers/icons/WebAddress.js +1 -1
- package/dist/esm/providers/icons/WindPower.js +1 -1
- package/dist/esm/providers/index.js +2 -2
- package/dist/esm/providers/pictograms/AccountInCreditPositiveBalance.js +1 -1
- package/dist/esm/providers/pictograms/AccountInDebtNegativeBalance.js +1 -1
- package/dist/esm/providers/pictograms/AccousticGuitar.js +1 -1
- package/dist/esm/providers/pictograms/AddYourCar.js +1 -1
- package/dist/esm/providers/pictograms/Archive.js +1 -1
- package/dist/esm/providers/pictograms/AssistanceDog.js +1 -1
- package/dist/esm/providers/pictograms/Awards.js +1 -1
- package/dist/esm/providers/pictograms/Bag.js +1 -1
- package/dist/esm/providers/pictograms/Battery13.js +1 -1
- package/dist/esm/providers/pictograms/Battery23.js +1 -1
- package/dist/esm/providers/pictograms/Battery33.js +1 -1
- package/dist/esm/providers/pictograms/BatteryEmpty.js +1 -1
- package/dist/esm/providers/pictograms/Bicycle.js +1 -1
- package/dist/esm/providers/pictograms/Bill.js +1 -1
- package/dist/esm/providers/pictograms/Bin.js +1 -1
- package/dist/esm/providers/pictograms/Boiler.js +1 -1
- package/dist/esm/providers/pictograms/BoilerEngineer.js +1 -1
- package/dist/esm/providers/pictograms/BoilerHeating.js +1 -1
- package/dist/esm/providers/pictograms/BoilerReplacement.js +1 -1
- package/dist/esm/providers/pictograms/BoilerService.js +1 -1
- package/dist/esm/providers/pictograms/BoilerWorking.js +1 -1
- package/dist/esm/providers/pictograms/BritishSignLanguage.js +1 -1
- package/dist/esm/providers/pictograms/Bus.js +1 -1
- package/dist/esm/providers/pictograms/CableLengthLong.js +1 -1
- package/dist/esm/providers/pictograms/CableLengthMedium.js +1 -1
- package/dist/esm/providers/pictograms/CableLengthShort.js +1 -1
- package/dist/esm/providers/pictograms/Calendar.js +1 -1
- package/dist/esm/providers/pictograms/Camera.js +1 -1
- package/dist/esm/providers/pictograms/Car.js +1 -1
- package/dist/esm/providers/pictograms/ChargerChademo.js +1 -1
- package/dist/esm/providers/pictograms/ChargerCssCombo.js +1 -1
- package/dist/esm/providers/pictograms/ChargerType1.js +1 -1
- package/dist/esm/providers/pictograms/ChargerType2.js +1 -1
- package/dist/esm/providers/pictograms/Cloakroom.js +1 -1
- package/dist/esm/providers/pictograms/Clock.js +1 -1
- package/dist/esm/providers/pictograms/Comedy.js +1 -1
- package/dist/esm/providers/pictograms/Competition.js +1 -1
- package/dist/esm/providers/pictograms/Confirmation.js +1 -1
- package/dist/esm/providers/pictograms/ContactUs.js +1 -1
- package/dist/esm/providers/pictograms/Copy.js +1 -1
- package/dist/esm/providers/pictograms/CreatePaymentSchedule.js +1 -1
- package/dist/esm/providers/pictograms/CreditCard.js +1 -1
- package/dist/esm/providers/pictograms/Cursor.js +1 -1
- package/dist/esm/providers/pictograms/Customer.js +1 -1
- package/dist/esm/providers/pictograms/CustomerStar.js +1 -1
- package/dist/esm/providers/pictograms/DisbaledToilet.js +1 -1
- package/dist/esm/providers/pictograms/DownloadApp.js +1 -1
- package/dist/esm/providers/pictograms/Drink1.js +1 -1
- package/dist/esm/providers/pictograms/Drink2.js +1 -1
- package/dist/esm/providers/pictograms/Drink3.js +1 -1
- package/dist/esm/providers/pictograms/Drink4.js +1 -1
- package/dist/esm/providers/pictograms/EcoHome.js +1 -1
- package/dist/esm/providers/pictograms/Edit.js +1 -1
- package/dist/esm/providers/pictograms/Electric.js +1 -1
- package/dist/esm/providers/pictograms/ElectricCarEv.js +1 -1
- package/dist/esm/providers/pictograms/ElectricityWarning.js +1 -1
- package/dist/esm/providers/pictograms/Emergency.js +1 -1
- package/dist/esm/providers/pictograms/EnergyAdvice.js +1 -1
- package/dist/esm/providers/pictograms/EnergyExperts.js +1 -1
- package/dist/esm/providers/pictograms/EstimatedCharge.js +1 -1
- package/dist/esm/providers/pictograms/EstimatedCharge2.js +1 -1
- package/dist/esm/providers/pictograms/EstimatedRange.js +1 -1
- package/dist/esm/providers/pictograms/EvCharger.js +1 -1
- package/dist/esm/providers/pictograms/ExitFees.js +1 -1
- package/dist/esm/providers/pictograms/ExternalDrains.js +1 -1
- package/dist/esm/providers/pictograms/Fairness.js +1 -1
- package/dist/esm/providers/pictograms/Filter.js +1 -1
- package/dist/esm/providers/pictograms/FinalStatement.js +1 -1
- package/dist/esm/providers/pictograms/FlagIssue.js +1 -1
- package/dist/esm/providers/pictograms/Flats.js +1 -1
- package/dist/esm/providers/pictograms/Food.js +1 -1
- package/dist/esm/providers/pictograms/FossilFuels.js +1 -1
- package/dist/esm/providers/pictograms/Gas.js +1 -1
- package/dist/esm/providers/pictograms/GasWarning.js +1 -1
- package/dist/esm/providers/pictograms/GetInTouch.js +1 -1
- package/dist/esm/providers/pictograms/Global.js +1 -1
- package/dist/esm/providers/pictograms/GreenerEnergy.js +1 -1
- package/dist/esm/providers/pictograms/GuitarMusic.js +1 -1
- package/dist/esm/providers/pictograms/Heart.js +1 -1
- package/dist/esm/providers/pictograms/HeatPump.js +1 -1
- package/dist/esm/providers/pictograms/Help.js +1 -1
- package/dist/esm/providers/pictograms/HistoryPayment.js +1 -1
- package/dist/esm/providers/pictograms/Home.js +1 -1
- package/dist/esm/providers/pictograms/HomeMove.js +1 -1
- package/dist/esm/providers/pictograms/HomeMoving.js +1 -1
- package/dist/esm/providers/pictograms/HouseProtected.js +1 -1
- package/dist/esm/providers/pictograms/Information.js +1 -1
- package/dist/esm/providers/pictograms/InternalDrains.js +1 -1
- package/dist/esm/providers/pictograms/Key.js +1 -1
- package/dist/esm/providers/pictograms/Laptop.js +1 -1
- package/dist/esm/providers/pictograms/Lasers.js +1 -1
- package/dist/esm/providers/pictograms/Leaf.js +1 -1
- package/dist/esm/providers/pictograms/Letter.js +1 -1
- package/dist/esm/providers/pictograms/Lifts.js +1 -1
- package/dist/esm/providers/pictograms/LightMembership.js +1 -1
- package/dist/esm/providers/pictograms/Lightbulb.js +1 -1
- package/dist/esm/providers/pictograms/Like.js +1 -1
- package/dist/esm/providers/pictograms/List.js +1 -1
- package/dist/esm/providers/pictograms/LoadingAndFlexibility.js +1 -1
- package/dist/esm/providers/pictograms/Location.js +1 -1
- package/dist/esm/providers/pictograms/LogIn.js +1 -1
- package/dist/esm/providers/pictograms/LogOut.js +1 -1
- package/dist/esm/providers/pictograms/Lpg.js +1 -1
- package/dist/esm/providers/pictograms/Magnify.js +1 -1
- package/dist/esm/providers/pictograms/ManageMyAccount.js +1 -1
- package/dist/esm/providers/pictograms/Map.js +1 -1
- package/dist/esm/providers/pictograms/MensToilet.js +1 -1
- package/dist/esm/providers/pictograms/Merch.js +1 -1
- package/dist/esm/providers/pictograms/MeterReading.js +1 -1
- package/dist/esm/providers/pictograms/MeterTopUp1.js +1 -1
- package/dist/esm/providers/pictograms/MeterTopUp2.js +1 -1
- package/dist/esm/providers/pictograms/Microphone.js +1 -1
- package/dist/esm/providers/pictograms/Mobile.js +1 -1
- package/dist/esm/providers/pictograms/Money.js +1 -1
- package/dist/esm/providers/pictograms/Msg.js +1 -1
- package/dist/esm/providers/pictograms/Music.js +1 -1
- package/dist/esm/providers/pictograms/MyPaymentCards.js +1 -1
- package/dist/esm/providers/pictograms/Navigation.js +1 -1
- package/dist/esm/providers/pictograms/News.js +1 -1
- package/dist/esm/providers/pictograms/NoEntry.js +1 -1
- package/dist/esm/providers/pictograms/NoSmoking.js +1 -1
- package/dist/esm/providers/pictograms/Notification.js +1 -1
- package/dist/esm/providers/pictograms/NumberOfSeats.js +1 -1
- package/dist/esm/providers/pictograms/Oil.js +1 -1
- package/dist/esm/providers/pictograms/OpenLetter.js +1 -1
- package/dist/esm/providers/pictograms/Padlock.js +1 -1
- package/dist/esm/providers/pictograms/Parking.js +1 -1
- package/dist/esm/providers/pictograms/PayAsYouGo.js +1 -1
- package/dist/esm/providers/pictograms/PayByBankTransfer.js +1 -1
- package/dist/esm/providers/pictograms/PaygDrive.js +1 -1
- package/dist/esm/providers/pictograms/PaymentSchedule.js +1 -1
- package/dist/esm/providers/pictograms/Person.js +1 -1
- package/dist/esm/providers/pictograms/PingDriver.js +1 -1
- package/dist/esm/providers/pictograms/Placeholder.js +1 -1
- package/dist/esm/providers/pictograms/Planet.js +1 -1
- package/dist/esm/providers/pictograms/Play.js +1 -1
- package/dist/esm/providers/pictograms/Plug.js +1 -1
- package/dist/esm/providers/pictograms/PlugAndSocket.js +1 -1
- package/dist/esm/providers/pictograms/Plumbing.js +1 -1
- package/dist/esm/providers/pictograms/PowerMove.js +1 -1
- package/dist/esm/providers/pictograms/Present.js +1 -1
- package/dist/esm/providers/pictograms/Price.js +1 -1
- package/dist/esm/providers/pictograms/PriceCut.js +1 -1
- package/dist/esm/providers/pictograms/Queue.js +1 -1
- package/dist/esm/providers/pictograms/Radio.js +1 -1
- package/dist/esm/providers/pictograms/RealCharge.js +1 -1
- package/dist/esm/providers/pictograms/RealCharge2.js +1 -1
- package/dist/esm/providers/pictograms/Refund.js +1 -1
- package/dist/esm/providers/pictograms/Repair.js +1 -1
- package/dist/esm/providers/pictograms/Rocket.js +1 -1
- package/dist/esm/providers/pictograms/ScheduledTopUps.js +1 -1
- package/dist/esm/providers/pictograms/Screen1.js +1 -1
- package/dist/esm/providers/pictograms/Screen2.js +1 -1
- package/dist/esm/providers/pictograms/Seats.js +1 -1
- package/dist/esm/providers/pictograms/SecurityDog.js +1 -1
- package/dist/esm/providers/pictograms/SellingPowerBackElectricity.js +1 -1
- package/dist/esm/providers/pictograms/SellingPowerBackGas.js +1 -1
- package/dist/esm/providers/pictograms/SemiDetached.js +1 -1
- package/dist/esm/providers/pictograms/Send.js +1 -1
- package/dist/esm/providers/pictograms/Shield.js +1 -1
- package/dist/esm/providers/pictograms/SmartHome.js +1 -1
- package/dist/esm/providers/pictograms/SmartMeter.js +1 -1
- package/dist/esm/providers/pictograms/SmartThermostatA.js +1 -1
- package/dist/esm/providers/pictograms/SmartThermostatB.js +1 -1
- package/dist/esm/providers/pictograms/Smoke.js +1 -1
- package/dist/esm/providers/pictograms/SolarPanel.js +1 -1
- package/dist/esm/providers/pictograms/SpecialEffects.js +1 -1
- package/dist/esm/providers/pictograms/Sport.js +1 -1
- package/dist/esm/providers/pictograms/Star.js +1 -1
- package/dist/esm/providers/pictograms/StoreLocator.js +1 -1
- package/dist/esm/providers/pictograms/StrobeLights.js +1 -1
- package/dist/esm/providers/pictograms/StrobeLights2.js +1 -1
- package/dist/esm/providers/pictograms/Sun.js +1 -1
- package/dist/esm/providers/pictograms/Tado.js +1 -1
- package/dist/esm/providers/pictograms/TapsAndToilets.js +1 -1
- package/dist/esm/providers/pictograms/TentFront.js +1 -1
- package/dist/esm/providers/pictograms/TentSide.js +1 -1
- package/dist/esm/providers/pictograms/Terraced.js +1 -1
- package/dist/esm/providers/pictograms/TheGrid.js +1 -1
- package/dist/esm/providers/pictograms/ThumbsDown.js +1 -1
- package/dist/esm/providers/pictograms/ThumbsUp.js +1 -1
- package/dist/esm/providers/pictograms/Ticket.js +1 -1
- package/dist/esm/providers/pictograms/TimeRunningOut.js +1 -1
- package/dist/esm/providers/pictograms/Toilet.js +1 -1
- package/dist/esm/providers/pictograms/TopUp.js +1 -1
- package/dist/esm/providers/pictograms/TopUpCardOrKey.js +1 -1
- package/dist/esm/providers/pictograms/TopUpInPaypointShop.js +1 -1
- package/dist/esm/providers/pictograms/TopUpInStore.js +1 -1
- package/dist/esm/providers/pictograms/TopUpOnline.js +1 -1
- package/dist/esm/providers/pictograms/Torch.js +1 -1
- package/dist/esm/providers/pictograms/Train.js +1 -1
- package/dist/esm/providers/pictograms/Trees.js +1 -1
- package/dist/esm/providers/pictograms/Turbine.js +1 -1
- package/dist/esm/providers/pictograms/UnavailableCharger.js +1 -1
- package/dist/esm/providers/pictograms/Underground.js +1 -1
- package/dist/esm/providers/pictograms/Underground1.js +1 -1
- package/dist/esm/providers/pictograms/Usage.js +1 -1
- package/dist/esm/providers/pictograms/Wallet.js +1 -1
- package/dist/esm/providers/pictograms/WarmHome.js +1 -1
- package/dist/esm/providers/pictograms/WaterSupplyPipe.js +1 -1
- package/dist/esm/providers/pictograms/WindEnergy.js +1 -1
- package/dist/esm/providers/pictograms/WomensToilet.js +1 -1
- package/dist/esm/providers/pictograms/Wrench.js +1 -1
- package/dist/esm/styled.native.js +1 -1
- package/dist/esm/test/utils.js +12 -0
- package/dist/esm/utils/utils.js +14 -3
- package/dist/hooks/index.js +18 -2
- package/dist/hooks/use-breakpoint.native.js +10 -6
- package/dist/hooks/use-font-scaling.d.ts +26 -0
- package/dist/hooks/use-font-scaling.js +35 -0
- package/dist/hooks/use-full-width.js +10 -6
- package/dist/hooks/use-layout.js +8 -4
- package/dist/index.d.ts +1 -0
- package/dist/index.js +20 -3
- package/dist/providers/IconsProvider.js +121 -119
- package/dist/providers/PictogramsProvider.js +217 -215
- package/dist/providers/icons/AI.js +40 -3
- package/dist/providers/icons/Address.js +40 -3
- package/dist/providers/icons/Advice.js +40 -3
- package/dist/providers/icons/Archive.js +40 -3
- package/dist/providers/icons/ArrowDown.js +40 -3
- package/dist/providers/icons/ArrowLeft.js +40 -3
- package/dist/providers/icons/ArrowRight.js +40 -3
- package/dist/providers/icons/ArrowUp.js +40 -3
- package/dist/providers/icons/Award.js +40 -3
- package/dist/providers/icons/Battery.js +40 -3
- package/dist/providers/icons/BritishSignLanguage.js +40 -3
- package/dist/providers/icons/Cal.js +40 -3
- package/dist/providers/icons/CalBook.js +40 -3
- package/dist/providers/icons/CaretArrowDown.js +40 -3
- package/dist/providers/icons/CaretArrowLeft.js +40 -3
- package/dist/providers/icons/CaretArrowRight.js +40 -3
- package/dist/providers/icons/CaretArrowUp.js +40 -3
- package/dist/providers/icons/CaretDown.js +40 -3
- package/dist/providers/icons/CaretLeft.js +40 -3
- package/dist/providers/icons/CaretRight.js +40 -3
- package/dist/providers/icons/CaretUp.js +40 -3
- package/dist/providers/icons/Chart.js +40 -3
- package/dist/providers/icons/ChartFilled.js +40 -3
- package/dist/providers/icons/Check.js +40 -3
- package/dist/providers/icons/CheckCircle.js +40 -3
- package/dist/providers/icons/ChevronDown.js +40 -3
- package/dist/providers/icons/ChevronDownSmall.js +40 -3
- package/dist/providers/icons/ChevronLeft.js +40 -3
- package/dist/providers/icons/ChevronLeftSmall.js +40 -3
- package/dist/providers/icons/ChevronLeftSmallFirst.js +40 -3
- package/dist/providers/icons/ChevronRight.js +40 -3
- package/dist/providers/icons/ChevronRightSmall.js +40 -3
- package/dist/providers/icons/ChevronRightSmallLast.js +40 -3
- package/dist/providers/icons/ChevronUp.js +40 -3
- package/dist/providers/icons/ChevronUpSmall.js +40 -3
- package/dist/providers/icons/Circle.js +40 -3
- package/dist/providers/icons/CloseCircle.js +40 -3
- package/dist/providers/icons/Copy.js +40 -3
- package/dist/providers/icons/Cross.js +40 -3
- package/dist/providers/icons/Doc.js +40 -3
- package/dist/providers/icons/Dollar.js +40 -3
- package/dist/providers/icons/Dots.js +40 -3
- package/dist/providers/icons/Download.js +40 -3
- package/dist/providers/icons/Eco.js +40 -3
- package/dist/providers/icons/EcoHome.js +40 -3
- package/dist/providers/icons/Edit.js +40 -3
- package/dist/providers/icons/ElectricCar.js +40 -3
- package/dist/providers/icons/ElectricHome.js +40 -3
- package/dist/providers/icons/Electricity.js +40 -3
- package/dist/providers/icons/Ellipsis.js +40 -3
- package/dist/providers/icons/EnergyAdvice.js +40 -3
- package/dist/providers/icons/Equals.js +40 -3
- package/dist/providers/icons/Euro.js +40 -3
- package/dist/providers/icons/Gas.js +40 -3
- package/dist/providers/icons/GlobeAddress.js +40 -3
- package/dist/providers/icons/HeatPump.js +40 -3
- package/dist/providers/icons/Help.js +40 -3
- package/dist/providers/icons/HelpFilled.js +40 -3
- package/dist/providers/icons/Hide.js +40 -3
- package/dist/providers/icons/Home.js +40 -3
- package/dist/providers/icons/HomeFilled.js +40 -3
- package/dist/providers/icons/HydroPower.js +40 -3
- package/dist/providers/icons/Info.js +40 -3
- package/dist/providers/icons/Link.js +40 -3
- package/dist/providers/icons/Logo.js +40 -3
- package/dist/providers/icons/Mail.js +40 -3
- package/dist/providers/icons/MailOpen.js +40 -3
- package/dist/providers/icons/Menu.js +40 -3
- package/dist/providers/icons/Message.js +40 -3
- package/dist/providers/icons/MessageFilled.js +40 -3
- package/dist/providers/icons/Minus.js +40 -3
- package/dist/providers/icons/Mobile.js +40 -3
- package/dist/providers/icons/NewWindow.js +40 -3
- package/dist/providers/icons/OvoLive.js +40 -3
- package/dist/providers/icons/OvoLiveFilled.js +40 -3
- package/dist/providers/icons/Pause.js +40 -3
- package/dist/providers/icons/PaymentCard.js +40 -3
- package/dist/providers/icons/PaymentCardFilled.js +40 -3
- package/dist/providers/icons/Paypoint.js +40 -3
- package/dist/providers/icons/Phone.js +40 -3
- package/dist/providers/icons/Plus.js +40 -3
- package/dist/providers/icons/PlusFilled.js +40 -3
- package/dist/providers/icons/Pound.js +40 -3
- package/dist/providers/icons/Pricing.js +40 -3
- package/dist/providers/icons/PricingFilled.js +40 -3
- package/dist/providers/icons/Search.js +40 -3
- package/dist/providers/icons/Security.js +40 -3
- package/dist/providers/icons/Send.js +40 -3
- package/dist/providers/icons/Share.js +40 -3
- package/dist/providers/icons/Shop.js +40 -3
- package/dist/providers/icons/ShopFilled.js +40 -3
- package/dist/providers/icons/Show.js +40 -3
- package/dist/providers/icons/SmartHome.js +40 -3
- package/dist/providers/icons/SmartMeter.js +40 -3
- package/dist/providers/icons/Solar.js +40 -3
- package/dist/providers/icons/Star.js +40 -3
- package/dist/providers/icons/StarFilled.js +40 -3
- package/dist/providers/icons/Sun.js +40 -3
- package/dist/providers/icons/Switch.js +40 -3
- package/dist/providers/icons/ThumbsDown.js +40 -3
- package/dist/providers/icons/ThumbsDownFilled.js +40 -3
- package/dist/providers/icons/ThumbsUp.js +40 -3
- package/dist/providers/icons/ThumbsUpFilled.js +40 -3
- package/dist/providers/icons/Torch.js +40 -3
- package/dist/providers/icons/Trees.js +40 -3
- package/dist/providers/icons/Tune.js +40 -3
- package/dist/providers/icons/User.js +40 -3
- package/dist/providers/icons/UserFilled.js +40 -3
- package/dist/providers/icons/Wallet.js +40 -3
- package/dist/providers/icons/WalletFilled.js +40 -3
- package/dist/providers/icons/WarmHome.js +40 -3
- package/dist/providers/icons/Warning.js +40 -3
- package/dist/providers/icons/WebAddress.js +40 -3
- package/dist/providers/icons/WindPower.js +40 -3
- package/dist/providers/icons/index.js +123 -107
- package/dist/providers/icons-types.js +2 -1
- package/dist/providers/index.d.ts +2 -2
- package/dist/providers/index.js +20 -4
- package/dist/providers/pictograms/AccountInCreditPositiveBalance.js +40 -3
- package/dist/providers/pictograms/AccountInDebtNegativeBalance.js +40 -3
- package/dist/providers/pictograms/AccousticGuitar.js +40 -3
- package/dist/providers/pictograms/AddYourCar.js +40 -3
- package/dist/providers/pictograms/Archive.js +40 -3
- package/dist/providers/pictograms/AssistanceDog.js +40 -3
- package/dist/providers/pictograms/Awards.js +40 -3
- package/dist/providers/pictograms/Bag.js +40 -3
- package/dist/providers/pictograms/Battery13.js +40 -3
- package/dist/providers/pictograms/Battery23.js +40 -3
- package/dist/providers/pictograms/Battery33.js +40 -3
- package/dist/providers/pictograms/BatteryEmpty.js +40 -3
- package/dist/providers/pictograms/Bicycle.js +40 -3
- package/dist/providers/pictograms/Bill.js +40 -3
- package/dist/providers/pictograms/Bin.js +40 -3
- package/dist/providers/pictograms/Boiler.js +40 -3
- package/dist/providers/pictograms/BoilerEngineer.js +40 -3
- package/dist/providers/pictograms/BoilerHeating.js +40 -3
- package/dist/providers/pictograms/BoilerReplacement.js +40 -3
- package/dist/providers/pictograms/BoilerService.js +40 -3
- package/dist/providers/pictograms/BoilerWorking.js +40 -3
- package/dist/providers/pictograms/BritishSignLanguage.js +40 -3
- package/dist/providers/pictograms/Bus.js +40 -3
- package/dist/providers/pictograms/CableLengthLong.js +40 -3
- package/dist/providers/pictograms/CableLengthMedium.js +40 -3
- package/dist/providers/pictograms/CableLengthShort.js +40 -3
- package/dist/providers/pictograms/Calendar.js +40 -3
- package/dist/providers/pictograms/Camera.js +40 -3
- package/dist/providers/pictograms/Car.js +40 -3
- package/dist/providers/pictograms/ChargerChademo.js +40 -3
- package/dist/providers/pictograms/ChargerCssCombo.js +40 -3
- package/dist/providers/pictograms/ChargerType1.js +40 -3
- package/dist/providers/pictograms/ChargerType2.js +40 -3
- package/dist/providers/pictograms/Cloakroom.js +40 -3
- package/dist/providers/pictograms/Clock.js +40 -3
- package/dist/providers/pictograms/Comedy.js +40 -3
- package/dist/providers/pictograms/Competition.js +40 -3
- package/dist/providers/pictograms/Confirmation.js +40 -3
- package/dist/providers/pictograms/ContactUs.js +40 -3
- package/dist/providers/pictograms/Copy.js +40 -3
- package/dist/providers/pictograms/CreatePaymentSchedule.js +40 -3
- package/dist/providers/pictograms/CreditCard.js +40 -3
- package/dist/providers/pictograms/Cursor.js +40 -3
- package/dist/providers/pictograms/Customer.js +40 -3
- package/dist/providers/pictograms/CustomerStar.js +40 -3
- package/dist/providers/pictograms/DisbaledToilet.js +40 -3
- package/dist/providers/pictograms/DownloadApp.js +40 -3
- package/dist/providers/pictograms/Drink1.js +40 -3
- package/dist/providers/pictograms/Drink2.js +40 -3
- package/dist/providers/pictograms/Drink3.js +40 -3
- package/dist/providers/pictograms/Drink4.js +40 -3
- package/dist/providers/pictograms/EcoHome.js +40 -3
- package/dist/providers/pictograms/Edit.js +40 -3
- package/dist/providers/pictograms/Electric.js +40 -3
- package/dist/providers/pictograms/ElectricCarEv.js +40 -3
- package/dist/providers/pictograms/ElectricityWarning.js +40 -3
- package/dist/providers/pictograms/Emergency.js +40 -3
- package/dist/providers/pictograms/EnergyAdvice.js +40 -3
- package/dist/providers/pictograms/EnergyExperts.js +40 -3
- package/dist/providers/pictograms/EstimatedCharge.js +40 -3
- package/dist/providers/pictograms/EstimatedCharge2.js +40 -3
- package/dist/providers/pictograms/EstimatedRange.js +40 -3
- package/dist/providers/pictograms/EvCharger.js +40 -3
- package/dist/providers/pictograms/ExitFees.js +40 -3
- package/dist/providers/pictograms/ExternalDrains.js +40 -3
- package/dist/providers/pictograms/Fairness.js +40 -3
- package/dist/providers/pictograms/Filter.js +40 -3
- package/dist/providers/pictograms/FinalStatement.js +40 -3
- package/dist/providers/pictograms/FlagIssue.js +40 -3
- package/dist/providers/pictograms/Flats.js +40 -3
- package/dist/providers/pictograms/Food.js +40 -3
- package/dist/providers/pictograms/FossilFuels.js +40 -3
- package/dist/providers/pictograms/Gas.js +40 -3
- package/dist/providers/pictograms/GasWarning.js +40 -3
- package/dist/providers/pictograms/GetInTouch.js +40 -3
- package/dist/providers/pictograms/Global.js +40 -3
- package/dist/providers/pictograms/GreenerEnergy.js +40 -3
- package/dist/providers/pictograms/GuitarMusic.js +40 -3
- package/dist/providers/pictograms/Heart.js +40 -3
- package/dist/providers/pictograms/HeatPump.js +40 -3
- package/dist/providers/pictograms/Help.js +40 -3
- package/dist/providers/pictograms/HistoryPayment.js +40 -3
- package/dist/providers/pictograms/Home.js +40 -3
- package/dist/providers/pictograms/HomeMove.js +40 -3
- package/dist/providers/pictograms/HomeMoving.js +40 -3
- package/dist/providers/pictograms/HouseProtected.js +40 -3
- package/dist/providers/pictograms/Information.js +40 -3
- package/dist/providers/pictograms/InternalDrains.js +40 -3
- package/dist/providers/pictograms/Key.js +40 -3
- package/dist/providers/pictograms/Laptop.js +40 -3
- package/dist/providers/pictograms/Lasers.js +40 -3
- package/dist/providers/pictograms/Leaf.js +40 -3
- package/dist/providers/pictograms/Letter.js +40 -3
- package/dist/providers/pictograms/Lifts.js +40 -3
- package/dist/providers/pictograms/LightMembership.js +40 -3
- package/dist/providers/pictograms/Lightbulb.js +40 -3
- package/dist/providers/pictograms/Like.js +40 -3
- package/dist/providers/pictograms/List.js +40 -3
- package/dist/providers/pictograms/LoadingAndFlexibility.js +40 -3
- package/dist/providers/pictograms/Location.js +40 -3
- package/dist/providers/pictograms/LogIn.js +40 -3
- package/dist/providers/pictograms/LogOut.js +40 -3
- package/dist/providers/pictograms/Lpg.js +40 -3
- package/dist/providers/pictograms/Magnify.js +40 -3
- package/dist/providers/pictograms/ManageMyAccount.js +40 -3
- package/dist/providers/pictograms/Map.js +40 -3
- package/dist/providers/pictograms/MensToilet.js +40 -3
- package/dist/providers/pictograms/Merch.js +40 -3
- package/dist/providers/pictograms/MeterReading.js +40 -3
- package/dist/providers/pictograms/MeterTopUp1.js +40 -3
- package/dist/providers/pictograms/MeterTopUp2.js +40 -3
- package/dist/providers/pictograms/Microphone.js +40 -3
- package/dist/providers/pictograms/Mobile.js +40 -3
- package/dist/providers/pictograms/Money.js +40 -3
- package/dist/providers/pictograms/Msg.js +40 -3
- package/dist/providers/pictograms/Music.js +40 -3
- package/dist/providers/pictograms/MyPaymentCards.js +40 -3
- package/dist/providers/pictograms/Navigation.js +40 -3
- package/dist/providers/pictograms/News.js +40 -3
- package/dist/providers/pictograms/NoEntry.js +40 -3
- package/dist/providers/pictograms/NoSmoking.js +40 -3
- package/dist/providers/pictograms/Notification.js +40 -3
- package/dist/providers/pictograms/NumberOfSeats.js +40 -3
- package/dist/providers/pictograms/Oil.js +40 -3
- package/dist/providers/pictograms/OpenLetter.js +40 -3
- package/dist/providers/pictograms/Padlock.js +40 -3
- package/dist/providers/pictograms/Parking.js +40 -3
- package/dist/providers/pictograms/PayAsYouGo.js +40 -3
- package/dist/providers/pictograms/PayByBankTransfer.js +40 -3
- package/dist/providers/pictograms/PaygDrive.js +40 -3
- package/dist/providers/pictograms/PaymentSchedule.js +40 -3
- package/dist/providers/pictograms/Person.js +40 -3
- package/dist/providers/pictograms/PingDriver.js +40 -3
- package/dist/providers/pictograms/Placeholder.js +40 -3
- package/dist/providers/pictograms/Planet.js +40 -3
- package/dist/providers/pictograms/Play.js +40 -3
- package/dist/providers/pictograms/Plug.js +40 -3
- package/dist/providers/pictograms/PlugAndSocket.js +40 -3
- package/dist/providers/pictograms/Plumbing.js +40 -3
- package/dist/providers/pictograms/PowerMove.js +40 -3
- package/dist/providers/pictograms/Present.js +40 -3
- package/dist/providers/pictograms/Price.js +40 -3
- package/dist/providers/pictograms/PriceCut.js +40 -3
- package/dist/providers/pictograms/Queue.js +40 -3
- package/dist/providers/pictograms/Radio.js +40 -3
- package/dist/providers/pictograms/RealCharge.js +40 -3
- package/dist/providers/pictograms/RealCharge2.js +40 -3
- package/dist/providers/pictograms/Refund.js +40 -3
- package/dist/providers/pictograms/Repair.js +40 -3
- package/dist/providers/pictograms/Rocket.js +40 -3
- package/dist/providers/pictograms/ScheduledTopUps.js +40 -3
- package/dist/providers/pictograms/Screen1.js +40 -3
- package/dist/providers/pictograms/Screen2.js +40 -3
- package/dist/providers/pictograms/Seats.js +40 -3
- package/dist/providers/pictograms/SecurityDog.js +40 -3
- package/dist/providers/pictograms/SellingPowerBackElectricity.js +40 -3
- package/dist/providers/pictograms/SellingPowerBackGas.js +40 -3
- package/dist/providers/pictograms/SemiDetached.js +40 -3
- package/dist/providers/pictograms/Send.js +40 -3
- package/dist/providers/pictograms/Shield.js +40 -3
- package/dist/providers/pictograms/SmartHome.js +40 -3
- package/dist/providers/pictograms/SmartMeter.js +40 -3
- package/dist/providers/pictograms/SmartThermostatA.js +40 -3
- package/dist/providers/pictograms/SmartThermostatB.js +40 -3
- package/dist/providers/pictograms/Smoke.js +40 -3
- package/dist/providers/pictograms/SolarPanel.js +40 -3
- package/dist/providers/pictograms/SpecialEffects.js +40 -3
- package/dist/providers/pictograms/Sport.js +40 -3
- package/dist/providers/pictograms/Star.js +40 -3
- package/dist/providers/pictograms/StoreLocator.js +40 -3
- package/dist/providers/pictograms/StrobeLights.js +40 -3
- package/dist/providers/pictograms/StrobeLights2.js +40 -3
- package/dist/providers/pictograms/Sun.js +40 -3
- package/dist/providers/pictograms/Tado.js +40 -3
- package/dist/providers/pictograms/TapsAndToilets.js +40 -3
- package/dist/providers/pictograms/TentFront.js +40 -3
- package/dist/providers/pictograms/TentSide.js +40 -3
- package/dist/providers/pictograms/Terraced.js +40 -3
- package/dist/providers/pictograms/TheGrid.js +40 -3
- package/dist/providers/pictograms/ThumbsDown.js +40 -3
- package/dist/providers/pictograms/ThumbsUp.js +40 -3
- package/dist/providers/pictograms/Ticket.js +40 -3
- package/dist/providers/pictograms/TimeRunningOut.js +40 -3
- package/dist/providers/pictograms/Toilet.js +40 -3
- package/dist/providers/pictograms/TopUp.js +40 -3
- package/dist/providers/pictograms/TopUpCardOrKey.js +40 -3
- package/dist/providers/pictograms/TopUpInPaypointShop.js +40 -3
- package/dist/providers/pictograms/TopUpInStore.js +40 -3
- package/dist/providers/pictograms/TopUpOnline.js +40 -3
- package/dist/providers/pictograms/Torch.js +40 -3
- package/dist/providers/pictograms/Train.js +40 -3
- package/dist/providers/pictograms/Trees.js +40 -3
- package/dist/providers/pictograms/Turbine.js +40 -3
- package/dist/providers/pictograms/UnavailableCharger.js +40 -3
- package/dist/providers/pictograms/Underground.js +40 -3
- package/dist/providers/pictograms/Underground1.js +40 -3
- package/dist/providers/pictograms/Usage.js +40 -3
- package/dist/providers/pictograms/Wallet.js +40 -3
- package/dist/providers/pictograms/WarmHome.js +40 -3
- package/dist/providers/pictograms/WaterSupplyPipe.js +40 -3
- package/dist/providers/pictograms/WindEnergy.js +40 -3
- package/dist/providers/pictograms/WomensToilet.js +40 -3
- package/dist/providers/pictograms/Wrench.js +40 -3
- package/dist/providers/pictograms/index.js +219 -203
- package/dist/providers/pictograms-types.js +2 -1
- package/dist/styled.native.d.ts +19 -1
- package/dist/styled.native.js +42 -3
- package/dist/test/utils.d.ts +4 -0
- package/dist/test/utils.js +28 -0
- package/dist/theme/index.js +17 -1
- package/dist/utils/index.js +17 -1
- package/dist/utils/utils.d.ts +11 -1
- package/dist/utils/utils.js +30 -9
- package/package.json +6 -6
- package/dist/components/Cards/shared.d.ts +0 -3
- package/dist/components/Cards/shared.js +0 -12
- package/dist/components/ErrorWrapper/styles.d.ts +0 -0
- package/dist/components/ErrorWrapper/styles.js +0 -1
- package/dist/esm/components/Cards/shared.js +0 -12
- package/dist/esm/components/ErrorWrapper/styles.js +0 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Phone = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Phone = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M13.005 12.953c-1.243-.077-2.372-.258-3.37-.541-1.592-.453-2.895-1.178-3.874-2.157-.988-.988-1.718-2.306-2.169-3.917-.277-.988-.454-2.105-.529-3.332h1.791l.72 1.453-.547.64-.617.721.388.867c.062.14.647 1.401 1.888 2.642 1.24 1.24 2.502 1.825 2.642 1.888l.867.388.721-.617.64-.547 1.453.72v1.789l1.5-.402V10.23l-3.175-1.574-1.393 1.191S8.827 9.35 7.746 8.268c-1.08-1.081-1.579-2.195-1.579-2.195L7.358 4.68 5.784 1.505H1.522c-.012 3.441.623 7.254 3.178 9.81 2.286 2.286 5.58 3.036 8.712 3.16l-.408-1.523Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Plus = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Plus = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m14.5 8.761-.402-1.5H8.75V1.5l-1.5.403v5.359H1.5l.403 1.5H7.25V14.5l1.5-.402V8.76h5.75Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const PlusFilled = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const PlusFilled = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M14.5 1.5h-13v13h13v-13Zm-1.81 5.932L13 8.586H8.577v4.104L7.423 13V8.586H3.31L3 7.432h4.423V3.31L8.577 3v4.432h4.113Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Pound = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Pound = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0ZM3 8c0 2.757 2.243 5 5 5s5-2.243 5-5-2.243-5-5-5-5 2.243-5 5Zm4.337 1.74h1.129v.001c.362 0 .638-.25.638-.637l1.137.069c0 .973-.646 1.688-1.602 1.688H5.76V9.845c.542-.19.896-.543.896-1.051 0-.093-.017-.186-.034-.278l-.001-.007h-.836v-.948h.491a2.24 2.24 0 0 1-.112-.724c0-.844.689-1.697 1.895-1.697 1.327 0 1.801.887 1.845 1.594l-1.129.301c-.008-.525-.25-.827-.698-.827-.344 0-.663.216-.663.672 0 .259.06.457.146.68h1.517v.949H7.863a.948.948 0 0 1 .008.155c0 .405-.147.818-.534 1.077Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Pricing = (props) => (_jsxs(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Pricing = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M4.894 5.468a.77.77 0 1 0 0-1.54.77.77 0 0 0 0 1.54Z" }), _jsx(Path, { fill: "currentColor", d: "m12.41 9.093-3.348 3.34-5.988-5.988.411-2.974 2.932-.38 5.993 5.998 1.673-.448-7.127-7.133-4.8.623-.67 4.847 7.574 7.575 3.798-3.788-.448-1.672Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const PricingFilled = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const PricingFilled = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m6.956 1.508-4.8.623-.67 4.847 7.574 7.575 5.475-5.46-7.579-7.585Zm-2.062 3.96a.77.77 0 1 1 0-1.54.77.77 0 0 1 0 1.54Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Search = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Search = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M12.907 3.093A5.42 5.42 0 0 0 9.062 1.5a5.44 5.44 0 0 0-4.34 8.717l-2.614 2.614.449 1.673 3.225-3.226a5.422 5.422 0 0 0 3.279 1.099 5.438 5.438 0 0 0 3.845-9.284h.001Zm-1.06 6.63a3.913 3.913 0 0 1-2.785 1.153 3.913 3.913 0 0 1-2.785-1.153 3.943 3.943 0 0 1 0-5.57A3.913 3.913 0 0 1 9.062 3c1.052 0 2.04.41 2.785 1.154a3.943 3.943 0 0 1 0 5.569Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Security = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Security = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M12 6.5h1v6.102L11.5 13V8h-7v5h7l.406 1.5H3v-8h1V5.466C4 3.28 5.676 1.5 7.923 1.5 10.171 1.5 12 3.349 12 5.622V6.5Zm-6.5 0h5v-.878C10.5 4.176 9.345 3 7.923 3 6.587 3 5.5 4.106 5.5 5.466V6.5Zm1.59 3.472 1.438-.382.382 1.438-1.438.381-.381-1.437Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Send = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Send = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M3.396 13.565 14.5 8.02 1.5 1.53v10.96l1.5-.403.396 1.479ZM2.999 8.79h3.709l-.402-1.5H2.999V3.954l8.143 4.066L3 12.086V8.79Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Share = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Share = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M11.5 6.5a2.5 2.5 0 1 0-2.458-2.04l-3.29 1.756a2.5 2.5 0 1 0 0 3.568l3.29 1.755a2.5 2.5 0 1 0 .706-1.323L6.459 8.46a2.514 2.514 0 0 0 0-.922l3.29-1.755c.452.443 1.07.716 1.752.716Zm0-1.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Shop = (props) => (_jsxs(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Shop = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M13.425 11.06 14.5 6.19h-1.8l-1.51-3.495-1.375.595 1.25 2.9h-6.19L6.19 3.3l-1.365-.62L3.23 6.19H1.505l1.5 6.81h9.19l-.4-1.5H4.21l-.84-3.81h9.265l-.84 3.81 1.63-.44Z" }), _jsx(Path, { fill: "currentColor", d: "M4.755 10.495h1.5V8.73H6.25l-1.495.4v1.365ZM7.255 10.495h1.5V8.73H8.75l-1.495.4v1.365ZM9.755 10.495h1.5V8.73h-.005l-1.495.4v1.365Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const ShopFilled = (props) => (_jsxs(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const ShopFilled = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m13.39 11.122 1.13-4.857-1.8-.02-1.47-3.513-1.381.58 1.217 2.913-6.19-.07L6.244 3.28l-1.358-.636-1.635 3.492-1.725-.02 1.422 6.827 9.19.105-.383-1.505-7.585-.087-.796-3.819 9.264.106-.883 3.8 1.635-.421Z" }), _jsx(Path, { fill: "currentColor", d: "m12.636 7.742-9.264-.107.797 3.818 7.583.087.884-3.798Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Show = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Show = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M1 8c1.815-2.435 4.28-3.94 7-3.94 2.72 0 5.185 1.505 7 3.94-1.815 2.435-4.28 3.94-7 3.94-2.72 0-5.185-1.505-7-3.94Zm1.95-.005c1.47 1.585 3.23 2.44 5.05 2.44 1.815 0 3.58-.86 5.05-2.44C11.58 6.41 9.815 5.555 8 5.555s-3.58.86-5.05 2.44ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10Zm0-1.5c.275 0 .5-.225.5-.5s-.225-.5-.5-.5-.5.225-.5.5.225.5.5.5Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const SmartHome = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const SmartHome = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M14.5 12.598 13 13V5.896L8 3.204 3 5.896V13h10l.402 1.5H1.5V5L8 1.5 14.5 5v7.598ZM4.022 7.367A5.59 5.59 0 0 1 8 5.719a5.59 5.59 0 0 1 3.979 1.648l-1.061 1.06A4.099 4.099 0 0 0 8 7.219a4.099 4.099 0 0 0-2.918 1.208l-1.06-1.06Zm2.697 2.698-1.06-1.061A3.29 3.29 0 0 1 8 8.034a3.29 3.29 0 0 1 2.341.97l-1.06 1.06A1.8 1.8 0 0 0 8 9.535a1.8 1.8 0 0 0-1.281.53Zm1.81.435-1.438.381.382 1.438 1.437-.382-.382-1.437Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const SmartMeter = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const SmartMeter = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "m14.5 11.097-1.5.405.398 1.498H1.5V3h13v8.097ZM13 4.5H3v7h10v-7Zm-1.757 1.142L9.5 6.13v2.743l.867-.233.585 1.719 1.156-3.67-.864.232V5.642ZM5.256 8.375H3.684a2.285 2.285 0 0 0 2.247 1.889v-1.5a.783.783 0 0 1-.675-.389Zm-1.579-.75a2.285 2.285 0 0 1 2.254-1.926 2.285 2.285 0 0 1 2.282 2.282h-1.5a.783.783 0 0 0-1.477-.356H3.677Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Solar = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Solar = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m12.758 11.5 1.458-.39L13 3H3L1.5 13h11.66l-.402-1.5Zm-2.246-7h1.196l.412 2.746h-1.608V4.5Zm-5.002 7H3.243l.413-2.754H5.51V11.5Zm0-4.254H3.88L4.292 4.5H5.51v2.746ZM9.012 11.5H7.01V8.746h2.002V11.5Zm0-4.254H7.01V4.5h2.002v2.746Zm1.5 4.254V8.746h1.833l.413 2.754h-2.246Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Star = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Star = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m8 5.013.782 1.394.303.539.595.169 1.752.499-1.037.904-.642.56.153.839.279 1.529-1.553-.721L8 10.43l-.632.294-1.553.721.279-1.53.153-.838-.642-.56-1.037-.905 1.752-.498.595-.169.303-.54L8 5.014ZM8 1.95 5.91 5.672 1.5 6.925l3.118 2.723-.799 4.38L8 12.085l4.18 1.942-.798-4.38 3.118-2.72-4.41-1.255-2.09-3.723H8Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const StarFilled = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const StarFilled = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M8 1.948v.001l2.089 3.722 4.41 1.255-3.118 2.72.799 4.38L8 12.085l-4.18 1.943.798-4.38L1.5 6.924l4.41-1.253L8 1.95h-.001H8Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Sun = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Sun = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M8.75 1.5h-1.5v1.418h1.5V1.5Zm2.079 3.671A3.987 3.987 0 0 0 8 4a4 4 0 1 0 2.829 1.171ZM9.768 9.768c-.472.473-1.1.732-1.768.732-.667 0-1.295-.26-1.768-.732A2.484 2.484 0 0 1 5.5 8c0-.668.26-1.296.733-1.769A2.484 2.484 0 0 1 8.001 5.5c.667 0 1.295.26 1.768.731.472.473.732 1.1.732 1.769 0 .668-.26 1.295-.733 1.768ZM1.5 7.239h1.43v1.5H1.5v-1.5Zm5.75 5.821V14.5h1.5v-1.441h-1.5Zm5.82-5.82h1.43v1.5h-1.43v-1.5Zm-1.049-4.332-.966.966 1.061 1.06.966-.965-1.06-1.061Zm-9.103 1.06 1.06-1.06.967.966-1.061 1.06-.966-.966Zm.966 7.077-.966.966 1.061 1.06.966-.966-1.06-1.06Zm7.171 1.06 1.06-1.06.967.965-1.061 1.061-.966-.966Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Switch = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Switch = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M14.483 8.013a6.484 6.484 0 0 1-6.476 6.476H8a6.475 6.475 0 0 1-4.973-2.334v1.39l-1.5-.001.001-3.98h3.98v1.5H4.074a4.977 4.977 0 0 0 3.93 1.925 4.982 4.982 0 0 0 4.973-4.976h1.506ZM8.01 1.523a6.475 6.475 0 0 1 4.972 2.334l.001-1.388h1.5v3.98h-3.981v-1.5h1.433a4.976 4.976 0 0 0-3.928-1.926A4.983 4.983 0 0 0 3.033 8H1.527a6.484 6.484 0 0 1 6.477-6.477h.006Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const ThumbsDown = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const ThumbsDown = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m12.562 12.937-4.79.002-.57-.569a1.484 1.484 0 0 0-1.056-.438h-.505V8.79h.18c.654 0 1.225-.42 1.42-1.044l.105-.332 1.086-3.728.144-.494c.147.077.277.187.381.325.217.289.283.653.182.999L8.233 7.63h4.182c.081 0 .147.066.147.147v5.16l1.5-.403V7.777c0-.908-.739-1.647-1.646-1.647H10.23l.348-1.196a2.612 2.612 0 0 0-.422-2.318A2.612 2.612 0 0 0 8.05 1.563h-.563l-.495 1.703-1.08 3.705-.1.317h-.171v-.862H3.323c-.764 0-1.385.621-1.385 1.385v5.224c0 .764.621 1.385 1.385 1.385h2.313l.002-.989h.504l.569.569c.282.282.657.437 1.056.437h5.198l-.403-1.5Zm-8.424-.017h-.7V7.926h.703l-.003 4.994Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const ThumbsDownFilled = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const ThumbsDownFilled = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m12.16 1.563.403 1.5 1.5-.403v5.563a1.65 1.65 0 0 1-1.648 1.646h-2.184l.348 1.197c.234.804.08 1.648-.422 2.318a2.613 2.613 0 0 1-2.107 1.053h-.564l-.494-1.704-1.08-3.705-.1-.316h-.171v.862H3.323A1.386 1.386 0 0 1 1.938 8.19V2.965c0-.764.622-1.385 1.385-1.385h2.314v.987h.51L6.71 2a1.485 1.485 0 0 1 1.057-.438h4.392Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const ThumbsUp = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const ThumbsUp = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m12.563 3.062-.403-1.5H7.767c-.399 0-.774.156-1.056.438l-.565.568h-.508l-.002-.988H3.323c-.764 0-1.385.621-1.385 1.385V8.19c0 .764.621 1.385 1.385 1.385h2.318v-.863h.172l.1.317 1.079 3.705.495 1.704h.563c.837 0 1.605-.384 2.107-1.053.502-.67.656-1.515.422-2.318l-.348-1.196h2.184c.908 0 1.647-.74 1.647-1.647V2.66l-1.499.402ZM3.438 8.074V3.08h.7l.003 4.994h-.703Zm9.124.149c0 .08-.066.147-.147.147H8.233l.906 3.115c.1.346.035.71-.182.998a1.134 1.134 0 0 1-.381.326L7.35 8.602l-.108-.347A1.483 1.483 0 0 0 5.82 7.211h-.18V4.067h.505c.4 0 .775-.155 1.057-.437l.564-.567h4.795v5.16Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const ThumbsUpFilled = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const ThumbsUpFilled = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M12.563 12.937h-.001ZM8.05 1.563c.837 0 1.605.384 2.107 1.053.502.67.656 1.515.422 2.319l-.348 1.196h2.184a1.65 1.65 0 0 1 1.648 1.646v4.757l-1.5.403.402 1.5H7.768c-.4 0-.775-.155-1.057-.437l-.57-.57-.503.002-.001.988H3.323a1.387 1.387 0 0 1-1.385-1.385V7.811c0-.764.622-1.385 1.385-1.385h2.318v.862h.171l.1-.316 1.08-3.705.494-1.704h.564Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Torch = (props) => (_jsxs(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Torch = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M4.728 14V6.714L3.016 5.012 3 1h10v4.012L11.273 6.73v6.173l-1.5-.402L9.37 14H4.726ZM11.5 3.494V2.5H4.506l.004.994h6.99ZM9.773 12.5V6.105l.442-.44.675-.671H5.124l.66.656.442.44v6.41h3.547Z" }), _jsx(Path, { fill: "currentColor", d: "M7 10V8h2v2H7Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Trees = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Trees = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M9.755 2.7a3.093 3.093 0 0 1 3.043 2.542 3.093 3.093 0 0 1-2.047 5.785V14.5h-1.5v-2.877a3.093 3.093 0 0 1-2.565-5.456A3.093 3.093 0 0 1 9.755 2.7Zm1.218 6.836A1.595 1.595 0 0 0 13 8.003c0-.604-.336-1.149-.877-1.422l-.669-.337-.133-.737A1.589 1.589 0 0 0 9.755 4.2a1.595 1.595 0 0 0-1.58 1.787l.1.838-.664.522A1.585 1.585 0 0 0 7 8.599a1.595 1.595 0 0 0 2.25 1.453V7.89l1.5-.402v1.984l.223.063Zm-6.264.422.218-.18a3.71 3.71 0 0 0 1.472 1.945v2.788h-1.5v-2.96a2.543 2.543 0 0 1-2.424-4.397 2.543 2.543 0 0 1 3.662-2.582 3.689 3.689 0 0 0-.225 1.19l-.003.196-.135.14a.922.922 0 0 0-.011.012l-.011.012a1.043 1.043 0 0 0-1.788.851l.101.838-.664.521a1.045 1.045 0 1 0 1.308 1.626Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Tune = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Tune = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "m4 1.485-1.5.405V4.5h-1V6H5V4.5H4V1.485Zm3.25.42 1.5-.405v8.75h1v1.5h-3.5v-1.5h1V1.905Zm1.5 12.19-1.5.405v-1.75h1.5v1.345Zm3.25.39 1.5-.405V9.75H12v4.735Zm-8-.405-1.5.405V7H4v7.08Zm9.5-12.595V7.25h1v1.5H11v-1.5h1V1.89l1.5-.405Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const User = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const User = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M11.255 4.756a3.255 3.255 0 1 1-6.51 0 3.255 3.255 0 0 1 6.51 0Zm-1.5 0C9.755 3.786 8.968 3 8 3c-.968 0-1.755.788-1.755 1.755 0 .968.787 1.756 1.755 1.756.968 0 1.755-.788 1.755-1.756ZM14.5 9.979v2.619l-1.5.401v-1.865L8 9.813l-5 1.321V13h9.999l.402 1.5H1.5V9.979L8 8.262l6.5 1.717Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const UserFilled = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const UserFilled = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M11.255 4.756a3.255 3.255 0 1 1-6.51 0 3.255 3.255 0 0 1 6.51 0ZM14.5 14.5V9.979L8 8.262 1.5 9.979V14.5h13Zm0 0L12.999 13H3h10v-.001l1.5 1.501Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Wallet = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Wallet = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M14.5 3.025v8.073L13 11.5V4.525H9.126l-.003.013-.049-.013H3V11.5h10l.402 1.5H1.5V3.025h1.651l.41-1.53 5.71 1.53H14.5Zm-4.38 4.447 1.438-.381.381 1.437-1.437.381-.382-1.437Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const WalletFilled = (props) => (_jsx(Svg, { viewBox: "0 0 21 20",
|
|
3
|
+
export const WalletFilled = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 21 20" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M18.325 3.781h-6.537L4.65 1.87 4.137 3.78H2.075V16.25h16.25V3.781ZM14.65 8.863l.475 1.793-1.794.475-.475-1.793 1.794-.475Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const WarmHome = (props) => (_jsxs(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const WarmHome = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m13 13 1.5-.402V5L8 1.5 1.5 5v9.5h11.902L13 13Zm0 0H3V5.896l5-2.692 5 2.692V13Z" }), _jsx(Path, { fill: "currentColor", d: "m9.604 11.804-.452-.599c-.406-.539-.928-1.878.004-3.091.497-.647-.024-1.444-.029-1.452L8.71 6.04l1.248-.833.416.623c.42.628.886 2.009-.029 3.199a.934.934 0 0 0-.179.855c.061.24.182.417.184.419l.451.598-1.197.903v.001ZM6.102 11.804l-.452-.599c-.405-.539-.928-1.878.004-3.091.498-.647-.023-1.444-.029-1.452L5.21 6.04l1.248-.833.416.623c.42.628.885 2.009-.029 3.199a.934.934 0 0 0-.179.855c.06.24.182.417.183.419l.452.598-1.198.903v.001Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Warning = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const Warning = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", fillRule: "evenodd", d: "M1.5 8a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0ZM3 8c0 2.757 2.243 5 5 5s5-2.243 5-5-2.243-5-5-5-5 2.243-5 5Zm5.56 1.275.35-4.87H7.09l.35 4.87h1.12Zm-.02.46-1.47.39.39 1.47 1.47-.39-.39-1.47Z", clipRule: "evenodd" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const WebAddress = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const WebAddress = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m11.644 10.805-.848.848-1.737-1.738-1.061-1.06-1.061 1.06-.244.244-1.41-4.873 4.885 1.399-.261.26-1.061 1.061 1.06 1.061 1.737 1.736.776-1.345-1.452-1.452 2.062-2.062-9.94-2.847 2.869 9.918 2.04-2.039 2.798 2.798 2.193-2.193-1.345-.776Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const WindPower = (props) => (_jsx(Svg, { viewBox: "0 0 16 16",
|
|
3
|
+
export const WindPower = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 16 16" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m9.548 8.401 3.674.029.344-.595-3.962-1.062A1.617 1.617 0 0 0 8.4 5.385v-.65L6.588 1.539h-.687l1.108 4.137a1.611 1.611 0 0 0-.592 1.585l-.555.32L4 10.748l.344.596 2.914-2.915-1.018 6.043h3.52L8.733 8.383c.13-.066.25-.15.356-.247l.458.264v.001Zm-2.125 5.072L8 10.048l.577 3.425H7.423ZM8.54 7.238a.614.614 0 0 1-.419.312l-.026.004a.613.613 0 1 1 .446-.316Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const AccountInCreditPositiveBalance = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const AccountInCreditPositiveBalance = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M46.857 35.743c-6.138 0-11.114 4.975-11.114 11.114 0 6.139 4.975 11.114 11.114 11.114 6.139 0 11.114-4.975 11.114-11.114 0-6.139-4.975-11.114-11.114-11.114Zm0 19.231c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117ZM33.746 46.857c0-.507.03-1.009.087-1.501h-11.9l.535 1.998h11.289c-.006-.165-.01-.331-.01-.496h-.001v-.001ZM36.618 38.678H21.811v.029l.527 1.969h12.959c.379-.707.822-1.376 1.32-1.998h.001ZM41.751 31.999h-19.94v.104l.508 1.894h19.967l-.535-1.998Z" }), _jsx(Path, { fill: "currentColor", d: "M35.851 53.975H16.017V25.053h18.974V10.024h12.991v23.771a13 13 0 0 1 3.996.993V6.028H32L12.022 21.957v32.014a4 4 0 0 0 4 4h23.887a13.212 13.212 0 0 1-4.058-3.996Zm-3.856-42.832v10.914H18.306l13.689-10.914Z" }), _jsx(Path, { fill: "currentColor", d: "M41.751 31.999h-19.94v.104l.508 1.894h19.967l-.535-1.998ZM47.736 49.856h-2.133c.732-.489 1.009-1.27 1.009-2.035 0-.098 0-.196-.016-.293h2.295v-1.791h-2.865c-.163-.424-.277-.798-.277-1.286 0-.863.602-1.27 1.254-1.27.846 0 1.303.569 1.319 1.562l2.133-.569c-.082-1.335-.977-3.012-3.483-3.012-2.279 0-3.581 1.611-3.581 3.207 0 .537.081.977.212 1.367h-.928v1.791h1.579c.033.179.065.358.065.537 0 .96-.667 1.628-1.693 1.986v1.921h5.437c1.807 0 3.028-1.352 3.028-3.19l-2.149-.13c0 .732-.52 1.205-1.205 1.205h-.001Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const AccountInDebtNegativeBalance = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const AccountInDebtNegativeBalance = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M46.857 35.743c-6.138 0-11.114 4.975-11.114 11.114 0 6.139 4.975 11.114 11.114 11.114 6.139 0 11.114-4.975 11.114-11.114 0-6.139-4.975-11.114-11.114-11.114Zm0 19.231c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117ZM33.746 46.857c0-.507.03-1.009.087-1.501h-11.9l.535 1.998h11.289c-.006-.165-.01-.331-.01-.496h-.001v-.001ZM36.618 38.678H21.811v.029l.527 1.969h12.959c.379-.707.822-1.376 1.32-1.998h.001ZM41.751 31.999h-19.94v.104l.508 1.894h19.967l-.535-1.998Z" }), _jsx(Path, { fill: "currentColor", d: "M35.851 53.975H16.017V25.053h18.974V10.024h12.991v23.771a13 13 0 0 1 3.996.993V6.028H32L12.022 21.957v32.014a4 4 0 0 0 4 4h23.887a13.212 13.212 0 0 1-4.058-3.996Zm-3.856-42.832v10.914H18.306l13.689-10.914Z" }), _jsx(Path, { fill: "currentColor", d: "M41.751 31.999h-19.94v.104l.508 1.894h19.967l-.535-1.998ZM48.094 49.778l-2.936.779.779 2.936 2.936-.779-.779-2.936ZM48.133 49.26l.699-8.491h-3.635l.698 8.491h2.238Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const AccousticGuitar = (props) => (_jsx(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const AccousticGuitar = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "m50.34 10.178 1.964 1.143 2.368 1.38-1.934 1.95-13.753 13.875c.776 1.384 1.369 2.909 1.673 4.337.255 1.197.313 2.331.176 3.371-.203 1.53-.838 2.872-1.837 3.88-1.084 1.094-2.698 1.979-3.92 2.55.242 3.415-.856 6.597-3.077 8.838-2.006 2.025-4.786 3.14-7.826 3.14-3.85 0-7.795-1.751-10.823-4.806-2.569-2.593-4.222-5.863-4.653-9.208-.228-1.76-.109-3.462.35-5.056.507-1.758 1.398-3.29 2.65-4.553 2.007-2.025 4.787-3.14 7.827-3.14.309 0 .62.01.934.034.565-1.23 1.443-2.86 2.526-3.953.872-.88 2.44-1.927 4.962-1.927 2.031 0 4.392.712 6.525 1.938L47.81 10.514l1.138-1.148 1.394.812ZM28.473 33.014l-1.516-1.464 4.394-4.434c-1.144-.515-2.363-.852-3.405-.852-.812 0-1.517.204-1.995.686-.59.596-1.355 1.893-1.998 3.457A2.953 2.953 0 0 1 20.78 32.2a9.073 9.073 0 0 0-1.256-.09c-1.867 0-3.591.62-4.86 1.9-3.055 3.084-2.315 8.829 1.653 12.832 2.32 2.34 5.23 3.568 7.857 3.568 1.867 0 3.591-.62 4.86-1.9 1.549-1.563 2.123-3.812 1.794-6.17-.189-1.355.524-2.676 1.776-3.201 1.55-.649 2.837-1.42 3.427-2.016 1.094-1.102.744-3.395-.164-5.448l-4.295 4.333-1.517-1.464 21.2-21.389-1.963-1.144-20.82 21.004Zm-5.988 3.11a2.99 2.99 0 0 1 4.247 0 3.054 3.054 0 0 1 0 4.285 2.98 2.98 0 0 1-2.124.886 2.98 2.98 0 0 1-2.123-.886 3.054 3.054 0 0 1 0-4.285Zm2.124 1.23a.902.902 0 0 0-.64.267.92.92 0 0 0 0 1.292.901.901 0 0 0 1.28 0h.002a.92.92 0 0 0 0-1.292.9.9 0 0 0-.642-.268Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const AddYourCar = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const AddYourCar = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M51.893 45.85h-4.029v-4.03l-2.015.54v3.489h-4.03l.54 2.015h3.489v4.029h2.015v-4.029h4.029v-2.015l.001.001ZM38.098 34.433H25.902v2h12.196v-2Z" }), _jsx(Path, { fill: "currentColor", d: "M46.83 35.76c-6.138 0-11.114 4.976-11.114 11.114 0 6.138 4.976 11.114 11.114 11.114 6.138 0 11.114-4.976 11.114-11.114 0-6.138-4.975-11.114-11.114-11.114Zm0 19.231c-4.476 0-8.117-3.641-8.117-8.117 0-4.476 3.641-8.117 8.117-8.117 4.476 0 8.117 3.641 8.117 8.117 0 4.476-3.641 8.117-8.117 8.117Z" }), _jsx(Path, { fill: "currentColor", d: "M34.654 42.006H15.01V28.865h33.989v5.076c1.046.175 2.05.473 2.997.881v-5.957h4.45l.803-2.997h-5.214l-5.602-13.874H17.29l-5.223 13.874H6.779l.803 2.997h4.433v23.097h2.997v-.015h5.6v-6.944h13.239c.15-1.044.422-2.048.804-2.998l-.001.001Zm1.48-27.017h8.358l4.259 10.878h-16.98l4.363-10.878Zm-16.851 0h12.538l-4.363 10.878H15.312l3.971-10.878Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Archive = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Archive = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M49.942 48h-36V28.648h36V48l4-1.072V32H58V12H10a4 4 0 0 0-4 4v12.058A3.942 3.942 0 0 0 9.942 32v16a4 4 0 0 0 4 4h37.072l-1.072-4ZM10 26.648V16h44v10.648H10Z" }), _jsx(Path, { fill: "currentColor", d: "m34.12 34.051-5.795 1.553 1.553 5.796 5.796-1.553-1.553-5.796Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const AssistanceDog = (props) => (_jsx(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const AssistanceDog = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M47.163 23.645c4.15-.976 5.003-5.265 4.874-7.397l-.06-.991-5.099-1.808c-1.7-2.556-4.943-3.852-8.1-3.173-3.134.674-5.24 3.113-5.498 6.364-.09 1.135.143 3.104.743 4.655-.314 1.286-1.042 2.484-2.022 3.74L7.427 11.326l-.975 1.747 24.245 13.525c-.328.375-.67.759-1.023 1.155-2.217 2.488-4.73 5.309-6.512 9.226-1.846 4.057-2.562 8.568-2.175 13.742-1.664-.324-2.825-1.02-3.56-1.619-1.159-.944-1.926-2.198-2.105-3.44l-2.97.43c.546 3.77 4.249 7.664 10.271 7.81l1.735.043-.21-1.723c-.655-5.401-.085-9.98 1.744-14 .875-1.923 1.979-3.585 3.14-5.079 7.493 2.37 12.78 7.46 14.255 9.001A29.812 29.812 0 0 1 42.13 46.5l-.629 1.831 1.93.151c1.714.135 2.794.912 3.315 2.414H36.92c1.263-2.417 1.673-5.016 1.094-7.264-.685-2.659-2.636-4.713-5.797-6.105l-.806 1.83c2.572 1.133 4.142 2.739 4.666 4.775.415 1.61.212 4.163-1.47 6.764h-6.582v3h19.469l-.799-2.98 2.95-.79c-.324-1.018-.813-1.886-1.466-2.594a6.133 6.133 0 0 0-2.692-1.694c2.292-7.849.665-12.566-.435-15.756-.37-1.072-.689-1.999-.689-2.641v-.126c0-1.14 0-2.041.276-2.495.277-.456 1.103-.84 2.524-1.175Zm-3.561 15.984c-2.302-2.184-6.94-5.985-13.213-8.144.515-.601 1.028-1.178 1.525-1.736a99.738 99.738 0 0 0 1.483-1.69c3.63 1.78 6.437 2.19 8.247 2.19.102 0 .2-.002.295-.005.088.265.18.537.277.816.73 2.116 1.637 4.75 1.386 8.569ZM42.075 23.26c-.713 1.173-.712 2.509-.712 4.055v.125c0 .266.022.532.06.801-1.475-.033-3.764-.39-6.741-1.785.773-1.04 1.428-2.11 1.876-3.258.556.502 1.185.833 1.862.959.201.037.401.056.598.056 1.014 0 1.946-.49 2.57-1.373 1.204-1.704.964-4.377-.642-7.15l-1.73 1.003c1.417 2.447 1.31 4.184.74 4.993-.292.412-.707.59-1.17.505-.764-.143-1.77-1.05-2.304-3.166h-.003c-.163-.755-.255-1.57-.209-2.149.218-2.748 2.268-3.48 3.14-3.668 1.697-.365 4.033.167 5.15 2.199l.276.5 4.153 1.472c-.041.32-.112.693-.232 1.072-.403 1.263-1.149 2.006-2.28 2.273-2.34.55-3.655 1.308-4.402 2.536Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Awards = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Awards = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M42.54 36.5C46.48 33.39 49 28.57 49 23.16c0-9.39-7.61-17-17-17s-17 7.61-17 17c0 5.4 2.52 10.22 6.45 13.33l-7.61 21.48L32 53.11l18.16 4.86-7.62-21.47Zm1.3 15.64L33 49.24v-9.1c2.15-.12 4.19-.65 6.05-1.5l4.79 13.5ZM19 23.16c0-3.47 1.35-6.74 3.81-9.19 2.46-2.46 5.72-3.81 9.19-3.81 3.47 0 6.74 1.35 9.19 3.81 2.45 2.46 3.81 5.72 3.81 9.19 0 3.47-1.35 6.74-3.81 9.19A12.929 12.929 0 0 1 32 36.16c-3.47 0-6.74-1.35-9.19-3.81A12.888 12.888 0 0 1 19 23.16Zm5.94 15.47c1.86.85 3.91 1.38 6.06 1.5v9.1l-10.85 2.9 4.79-13.5Z" }), _jsx(Path, { fill: "currentColor", d: "m27.17 28.85 4.82-2.2 4.82 2.2-.92-4.97 3.6-3.09-5.09-1.42-2.4-4.22-2.41 4.22-5.09 1.42 3.6 3.09-.93 4.97Zm2.95-7.55.79-.22.41-.71.68-1.18.68 1.18.41.71.79.22 1.49.41-.76.65-.87.75.21 1.13.22 1.19-1.32-.61-.83-.38-.83.38-1.32.61.22-1.19.21-1.13-.87-.75-.76-.65 1.45-.41Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Bag = (props) => (_jsx(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Bag = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M31.871 6.065c3.46 0 6.334 2.553 6.838 5.875h9.523v12.676a5.585 5.585 0 0 1 3.862 5.312v27.969H17.656a5.583 5.583 0 0 1-5.583-5.584V29.928a5.585 5.585 0 0 1 3.862-5.312V11.94h9.098c.504-3.322 3.378-5.875 6.838-5.875ZM47.77 28.971a5.504 5.504 0 0 1-5.042 3.296h-2.59l.98 3.648-1.933.518-1.116-4.166H27.094l.978 3.648-1.932.518-1.116-4.166H21.44a5.505 5.505 0 0 1-5.042-3.296 1.578 1.578 0 0 0-.324.956v22.385c0 .873.71 1.583 1.583 1.583h30.436V29.927c0-.36-.122-.69-.324-.956Zm-5.84 12.992v7.365l-2.003.537.536 2h-16.71c-.961 0-1.741-.781-1.741-1.743v-6.417c0-.962.78-1.742 1.742-1.742H41.93Zm-17.918 2v5.901H39.93v-5.901H24.01Zm-4.075-28.025v10.825c0 .83.675 1.505 1.505 1.505h2.512l-.955-3.565 1.339-.36h.635l1.051 3.925h10.974l-.955-3.565 1.339-.36h.635l1.051 3.925h3.66c.83 0 1.506-.675 1.506-1.505V15.938H19.936ZM31.87 8.064a4.924 4.924 0 0 0-4.804 3.874h9.608a4.923 4.923 0 0 0-4.804-3.874Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Battery13 = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Battery13 = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M49.5 52.93V12H42V8.09H22V12h-3.56c-2.18 0-3.94 1.79-3.94 4v38c0 2.21 1.76 4 3.94 4h28.12l-1.06-4H18.44V16H45.5v38l4-1.07Z" }), _jsx(Path, { fill: "currentColor", d: "M42 19.99H22v8.07h20v-8.07Zm-2 6.08H24V22h16v4.07ZM42 31.01H22v8.07h20v-8.07Zm-2 6.07H24v-4.07h16v4.07ZM42 42.02H22v8.07h20v-8.07Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Battery23 = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Battery23 = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M42 19.99H22v8.07h20v-8.07Zm-2 6.08H24V22h16v4.07ZM42 31.01H22v8.07h20v-8.07ZM42 42.02H22v8.07h20v-8.07Z" }), _jsx(Path, { fill: "currentColor", d: "M49.5 52.93V12H42V8.09H22V12h-3.56c-2.18 0-3.94 1.79-3.94 4v38c0 2.21 1.76 4 3.94 4h28.12l-1.06-4H18.44V16H45.5v38l4-1.07Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Battery33 = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Battery33 = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M42 19.99H22v8.07h20v-8.07ZM42 31.01H22v8.07h20v-8.07ZM22 50.09h20v-8.07H22v8.07Z" }), _jsx(Path, { fill: "currentColor", d: "M49.5 52.93V12H42V8.09H22V12h-3.56c-2.18 0-3.94 1.79-3.94 4v38c0 2.21 1.76 4 3.94 4h28.12l-1.06-4H18.44V16H45.5v38l4-1.07Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const BatteryEmpty = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const BatteryEmpty = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M49.5 52.93V12H42V8.09H22V12h-3.56c-2.18 0-3.94 1.79-3.94 4v38c0 2.21 1.76 4 3.94 4h28.12l-1.06-4H18.44V16H45.5v38l4-1.07Z" }), _jsx(Path, { fill: "currentColor", d: "M42 19.99H22v8.07h20v-8.07Zm-2 6.08H24V22h16v4.07ZM42 31.01H22v8.07h20v-8.07Zm-2 6.07H24v-4.07h16v4.07ZM40 44.02v4.07H24v-4.07h16Zm2-2H22v8.07h20v-8.07Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Bicycle = (props) => (_jsx(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Bicycle = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M48.33 26.99c-.488 0-.969.029-1.441.086L44.19 17.2h3.22l-.866-3.152h-6.56l1.505 5.507H24.212v-2.251h5.73l-.864-3.153H16.73l.866 3.152h4.463v2.619l-3.617 7.387a12.096 12.096 0 0 0-2.773-.322C9.172 26.99 3.902 32.13 3.902 38.47c0 6.34 5.269 11.48 11.768 11.48 6.5 0 11.625-5.002 11.765-11.223h5.519l9.397-16.022 1.415 5.18c-4.233 1.738-7.204 5.823-7.204 10.585 0 6.34 5.268 11.48 11.768 11.48 6.5 0 11.768-5.14 11.768-11.48 0-6.34-5.269-11.48-11.768-11.48Zm-28.274 4.337a8.434 8.434 0 0 1 3.62 4.247h-5.7l2.081-4.247h-.001ZM15.67 46.797c-4.707 0-8.537-3.736-8.537-8.328 0-4.593 3.83-8.329 8.538-8.329.454 0 .9.036 1.335.103l-4.155 8.483h11.35c-.14 4.474-3.911 8.071-8.53 8.071Zm11.39-11.224c-.81-3.041-2.866-5.593-5.605-7.104l2.171-4.434 6.308 11.538H27.06Zm4.69-1.143-6.408-11.724h13.286l-6.876 11.724h-.001Zm16.58 12.367c-4.708 0-8.538-3.736-8.538-8.328 0-3.293 1.97-6.144 4.819-7.495l2.158 7.9 3.122-.81-2.158-7.9c.197-.014.396-.024.597-.024 4.707 0 8.537 3.736 8.537 8.329 0 4.592-3.83 8.328-8.537 8.328Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Bill = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Bill = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m32.01 5.97-20 15.95v32.05c0 2.21 1.79 4 4 4h36v-52h-20ZM32 11.08v10.93H18.3L32 11.08Zm16.01 42.89h-32V25.01h19V9.97h13v44Z" }), _jsx(Path, { fill: "currentColor", d: "m21.81 32.07.5 1.89H42.3l-.53-2H21.81v.11ZM21.81 38.65v.03l.53 1.97h19.98l-.53-2H21.81ZM21.93 45.34l.53 2h19.99v-.03l-.53-1.97H21.93Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Bin = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Bin = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M39.438 12.436v-2.373c0-1.353-1.101-2.454-2.454-2.454h-9.968a2.456 2.456 0 0 0-2.454 2.454v2.373h-11.2a4.072 4.072 0 0 0-4.067 4.067v3.586c0 2.25 1.83 4.08 4.08 4.08h.356l2.362 29.74a4.363 4.363 0 0 0 4.327 3.998h24.535l-1.064-3.974 4.102-1.1 2.276-28.664h4.436V12.436H39.438Zm-12.876-2.373c0-.25.204-.454.454-.454h9.968c.25 0 .454.203.454.454v2.373H26.562v-2.373Zm17.333 43.844H20.42a.343.343 0 0 1-.34-.314l-2.497-31.446h28.834l-2.522 31.76Zm6.81-33.76H13.32a.08.08 0 0 1-.024-.058v-3.586c0-.037.03-.067.067-.067h37.341v3.71Z" }), _jsx(Path, { fill: "currentColor", d: "m39.83 26.752-1.973.529-.027-.103v23.285l2-.536V26.752ZM33.166 26.752l-1.972.529-.028-.103v23.285l2-.536V26.752ZM26.503 26.752l-1.973.529-.027-.103v23.285l2-.536V26.752Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Boiler = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Boiler = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M24 51.1a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM40 51.1a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM31.9 36.2h.18c7.23-.08 8.37-4.78 7.84-8.25-.59-3.91-5.61-9.09-5.61-9.09l-1.25 1.35-1.16-4.41s-7.11 7.47-7.85 12.43c-.54 3.57 1.54 7.97 7.85 7.97Zm1.78-2.56c-.6.4-1.3.54-1.61.56h-.1c-.29-.01-1.01-.15-1.64-.56-.8-.52-.9-1.13-.9-1.6 0-.72.6-1.74 1.65-2.8.31-.32.63-.6.92-.84.29.24.61.52.92.84 1.05 1.06 1.65 2.08 1.65 2.8.01.47-.1 1.07-.89 1.6Zm-7.66-5.11c.25-1.67 1.6-4.21 3.8-7.14.38-.5.75-.98 1.11-1.42l.2.76.93 3.51 2.22-2.39c1.48 1.8 3.38 4.47 3.67 6.41.36 2.37-.41 3.68-.91 4.25-.17.2-.37.38-.59.55.08-.31.12-.64.12-1.01 0-3.17-4.58-6.15-4.58-6.15s-4.58 2.97-4.58 6.15c0 .29.03.56.08.82-.16-.14-.31-.28-.44-.44-.85-1.01-1.24-2.47-1.03-3.9Z" }), _jsx(Path, { fill: "currentColor", d: "M51.99 6.01h-36c-2.21 0-4 1.79-4 4v43.98c0 2.22 1.8 4.02 4.02 4.02h33.05l-1.07-4 4-1.07V6.01Zm-4 48H16l-.01-.01v-9.99h32v10Zm0-12h-32v-32h32v32Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const BoilerEngineer = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const BoilerEngineer = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M32 32c7.18 0 13-5.82 13-13S39.18 6 32 6s-13 5.82-13 13 5.82 13 13 13Zm0-22c4.96 0 9 4.04 9 9s-4.04 9-9 9-9-4.04-9-9 4.04-9 9-9ZM54 51.84V54l4-1.07v-3.64a8.27 8.27 0 0 1-4 2.55ZM55.74 39.1v-9.38A6.25 6.25 0 0 0 58 24.91c0-2.97-2.08-5.46-4.86-6.09v3.95l-1.39.8-1.39-.8v-3.95a6.252 6.252 0 0 0-4.86 6.09c0 1.93.88 3.66 2.26 4.81v9.38a6.215 6.215 0 0 0-2.26 4.8c0 2.97 2.08 5.46 4.86 6.1v-3.95l1.39-.8 1.39.8V50A6.254 6.254 0 0 0 58 43.9c0-1.93-.88-3.66-2.26-4.8Zm-.6 7.37V44.9l-1-.58-1.39-.8-1-.58-1 .58-1.39.8-1 .58v1.57a4.23 4.23 0 0 1-.86-2.57c0-1.27.56-2.46 1.54-3.27l.72-.6V28.78l-.72-.6c-.98-.81-1.54-2-1.54-3.27 0-.94.3-1.82.86-2.57v1.57l1 .58 1.39.8 1 .58 1-.58 1.39-.8 1-.58v-1.57c.56.74.86 1.63.86 2.57 0 1.27-.56 2.46-1.54 3.27l-.72.6v11.25l.72.6c.98.81 1.54 2 1.54 3.27 0 .94-.3 1.83-.86 2.57Z" }), _jsx(Path, { fill: "currentColor", d: "M10.01 54V43.47l22-5.83 12.09 3.2c.38-.96.95-1.85 1.67-2.61v-1.09L32.01 33.5 6 40.39v13.6C6 56.2 7.79 58 10 58h45.07L54 54H10.01Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const BoilerHeating = (props) => (_jsx(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const BoilerHeating = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M9.9 18.01c-2.15 0-3.9 1.75-3.9 3.9V58h4v-5.99h44v6h4v-40H9.9Zm15.29 4H31v26h-5.81v-26Zm-2 26h-5.81v-26h5.81v26Zm9.81-26h5.81v26H33v-26Zm7.81 0h5.81v26h-5.81v-26ZM10 47.96V22.01h5.38v26h-5.33c-.03 0-.05-.02-.05-.05Zm44 .05h-5.38v-26H54v26ZM23.29 15.94l.6.8 1.6-1.2-.6-.8c-.01-.02-1.19-1.61-.01-3.15 2.07-2.7.12-5.69.04-5.81l-.56-.83-1.66 1.09.56.83c.05.08 1.24 1.94.04 3.49-1.68 2.19-.74 4.6-.01 5.58ZM14.13 15.94l.6.8 1.6-1.2-.6-.8c-.01-.02-1.19-1.61-.01-3.15 2.07-2.7.12-5.69.04-5.81l-.56-.83-1.67 1.11.56.83c.05.08 1.24 1.94.04 3.49-1.67 2.17-.73 4.58 0 5.56ZM50.79 15.94l.6.8 1.6-1.2-.6-.8c-.01-.02-1.19-1.61 0-3.15 2.07-2.7.12-5.69.04-5.81l-.55-.83-1.68 1.09.55.83c.05.08 1.24 1.94.04 3.49-1.67 2.19-.73 4.6 0 5.58ZM41.62 15.94l.6.8 1.6-1.2-.6-.8c-.01-.02-1.19-1.61 0-3.15 2.07-2.7.12-5.69.04-5.81l-.55-.83-1.67 1.11.55.83c.05.08 1.24 1.94.04 3.49-1.68 2.17-.74 4.58-.01 5.56ZM32.46 15.94l.6.8 1.6-1.2-.6-.8c-.01-.02-1.19-1.61 0-3.15 2.07-2.7.12-5.69.04-5.81l-.55-.83-1.67 1.11.55.83c.05.08 1.24 1.94.04 3.49-1.68 2.17-.74 4.58-.01 5.56Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const BoilerReplacement = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const BoilerReplacement = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M21.02 51.068a1.998 1.998 0 1 0 0-3.996 1.998 1.998 0 0 0 0 3.996ZM30.073 20.217l-1.168-4.408s-7.098 7.458-7.839 12.421c-.532 3.563 1.54 7.961 7.84 7.961h.104c.026 0 .053 0 .081-.002 7.22-.08 8.358-4.772 7.834-8.241-.59-3.91-5.604-9.08-5.604-9.08l-1.248 1.35Zm.61 13.412c-.602.395-1.296.543-1.605.562-.034 0-.068 0-.102.002-.29-.011-1.012-.154-1.638-.564-.798-.522-.9-1.128-.9-1.596 0-.72.602-1.74 1.651-2.797a13.4 13.4 0 0 1 .921-.841c.288.24.607.524.921.842 1.05 1.058 1.652 2.077 1.652 2.797 0 .468-.101 1.073-.9 1.596Zm3.36-1.134a3.72 3.72 0 0 1-.586.545 4.04 4.04 0 0 0 .124-1.007c0-3.169-4.57-6.138-4.57-6.138s-4.572 2.968-4.572 6.138c0 .29.028.562.08.817a4.343 4.343 0 0 1-.441-.439c-.863-1-1.25-2.454-1.037-3.886.25-1.671 1.597-4.204 3.795-7.134.376-.502.75-.98 1.106-1.419l.2.756.93 3.512 2.215-2.393c1.476 1.795 3.371 4.467 3.663 6.4.357 2.366-.414 3.677-.906 4.248Z" }), _jsx(Path, { fill: "currentColor", d: "M32.867 53.976H13.028a.051.051 0 0 1-.013-.012v-9.978h18.058a12.99 12.99 0 0 1 .62-1.997H13.014V10.024H44.98v23.762c1.406.119 2.75.46 3.995.988V6.029H13.011a3.993 3.993 0 0 0-3.993 3.992v43.935a4.016 4.016 0 0 0 4.016 4.015h23.897a13.223 13.223 0 0 1-4.064-3.995Z" }), _jsx(Path, { fill: "currentColor", d: "M43.868 35.737c-6.138 0-11.114 4.975-11.114 11.113 0 6.139 4.976 11.114 11.114 11.114 6.138 0 11.113-4.975 11.113-11.114 0-6.138-4.975-11.113-11.113-11.113Zm0 19.23c-4.476 0-8.117-3.64-8.117-8.117 0-4.476 3.64-8.117 8.117-8.117 4.476 0 8.117 3.642 8.117 8.117 0 4.477-3.641 8.117-8.117 8.117Z" }), _jsx(Path, { fill: "currentColor", d: "M43.27 43.724v-.763h-2.996v.763h-1.275v1.997h1.275v.761h2.996v-.76h5.737v-1.998h-5.736ZM47.734 47.662h-2.996v.762h-5.739v1.998h5.739v.761h2.996v-.76h1.273v-1.999h-1.273v-.762Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const BoilerService = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const BoilerService = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M24 51.1a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM48.114 49.801l-2.938.78.78 2.939 2.938-.78-.78-2.939ZM48.15 49.28l.7-8.5h-3.64l.7 8.5h2.24ZM33.06 20.21 31.9 15.8s-7.11 7.47-7.85 12.43c-.54 3.57 1.54 7.97 7.85 7.97h.18c7.23-.08 8.37-4.78 7.84-8.25-.59-3.91-5.61-9.09-5.61-9.09l-1.25 1.35Zm.62 13.43c-.6.4-1.3.54-1.61.56h-.1c-.29-.01-1.01-.15-1.64-.56-.8-.52-.9-1.13-.9-1.6 0-.72.6-1.74 1.65-2.8.31-.32.63-.6.92-.84.29.24.61.52.92.84 1.05 1.06 1.65 2.08 1.65 2.8.01.47-.1 1.07-.89 1.6Zm3.36-1.14c-.17.2-.37.38-.59.55.08-.31.12-.64.12-1.01 0-3.17-4.58-6.15-4.58-6.15s-4.58 2.97-4.58 6.15c0 .29.03.56.08.82-.16-.14-.31-.28-.44-.44-.86-1-1.25-2.46-1.04-3.89.25-1.67 1.6-4.21 3.8-7.14.38-.5.75-.98 1.11-1.42l.2.76.93 3.51 2.22-2.39c1.48 1.8 3.38 4.47 3.67 6.41.36 2.36-.41 3.67-.9 4.24Z" }), _jsx(Path, { fill: "currentColor", d: "M35.86 54.01H16l-.01-.01v-9.99h18.08c.15-.69.36-1.36.62-2h-18.7v-32h32V33.8c1.41.12 2.75.46 4 .99V6.01h-36c-2.21 0-4 1.79-4 4v43.98c0 2.22 1.8 4.02 4.02 4.02h23.92a13.275 13.275 0 0 1-4.07-4Z" }), _jsx(Path, { fill: "currentColor", d: "M46.87 35.75c-6.15 0-11.13 4.98-11.13 11.13S40.73 58 46.87 58C53.01 58 58 53.02 58 46.87s-4.98-11.12-11.13-11.12Zm0 19.25c-4.48 0-8.13-3.65-8.13-8.13s3.65-8.13 8.13-8.13S55 42.39 55 46.87 51.35 55 46.87 55Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const BoilerWorking = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const BoilerWorking = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "m51.82 42-5.88 5.88-3.03-3.03-2.12 2.12 5.15 5.15 6.78-6.78-.9-3.34ZM24 51.1a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM33.06 20.21 31.9 15.8s-7.11 7.47-7.85 12.43c-.54 3.57 1.54 7.97 7.85 7.97h.18c7.23-.08 8.37-4.78 7.84-8.25-.59-3.91-5.61-9.09-5.61-9.09l-1.25 1.35Zm.62 13.43c-.6.4-1.3.54-1.61.56h-.1c-.29-.01-1.01-.15-1.64-.56-.8-.52-.9-1.13-.9-1.6 0-.72.6-1.74 1.65-2.8.31-.32.63-.6.92-.84.29.24.61.52.92.84 1.05 1.06 1.65 2.08 1.65 2.8.01.47-.1 1.07-.89 1.6Zm3.36-1.14c-.17.2-.37.38-.59.55.08-.31.12-.64.12-1.01 0-3.17-4.58-6.15-4.58-6.15s-4.58 2.97-4.58 6.15c0 .29.03.56.08.82-.16-.14-.31-.28-.44-.44-.86-1-1.25-2.46-1.04-3.89.25-1.67 1.6-4.21 3.8-7.14.38-.5.75-.98 1.11-1.42l.2.76.93 3.51 2.22-2.39c1.48 1.8 3.38 4.47 3.67 6.41.36 2.36-.41 3.67-.9 4.24Z" }), _jsx(Path, { fill: "currentColor", d: "M35.86 54.01H16l-.01-.01v-9.99h18.08c.15-.69.36-1.36.62-2h-18.7v-32h32V33.8c1.41.12 2.75.46 4 .99V6.01h-36c-2.21 0-4 1.79-4 4v43.98c0 2.22 1.8 4.02 4.02 4.02h23.92a13.275 13.275 0 0 1-4.07-4Z" }), _jsx(Path, { fill: "currentColor", d: "M46.87 35.75c-6.15 0-11.13 4.98-11.13 11.13S40.73 58 46.87 58C53.01 58 58 53.02 58 46.87s-4.98-11.12-11.13-11.12Zm0 19.25c-4.48 0-8.13-3.65-8.13-8.13s3.65-8.13 8.13-8.13S55 42.39 55 46.87 51.35 55 46.87 55Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const BritishSignLanguage = (props) => (_jsx(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const BritishSignLanguage = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M32.032 6.031c14.36 0 26 11.641 26 26 0 14.36-11.641 26-26 26s-26-11.64-26-26c0-14.359 11.641-26 26-26Zm0 4.001a21.906 21.906 0 0 0-15.557 6.442 21.95 21.95 0 0 0-4.715 6.995 21.86 21.86 0 0 0-1.727 8.562 21.906 21.906 0 0 0 6.442 15.556 21.953 21.953 0 0 0 6.995 4.716 21.863 21.863 0 0 0 8.562 1.727 21.918 21.918 0 0 0 15.556-6.443 21.95 21.95 0 0 0 4.716-6.994 21.86 21.86 0 0 0 1.727-8.562 21.908 21.908 0 0 0-6.443-15.557 21.952 21.952 0 0 0-6.994-4.715 21.861 21.861 0 0 0-8.562-1.727Zm.366 14.408c3.539 0 4.88 2.12 5.18 3.78l-2.84.78c-.1-.64-.641-1.76-2.361-1.76-1.18 0-1.94.74-1.94 1.52 0 .68.42 1.18 1.4 1.36l1.9.36c2.7.52 4.1 2.24 4.1 4.26 0 2.22-1.86 4.48-5.24 4.48-3.92 0-5.6-2.54-5.8-4.46l2.9-.78c.12 1.3 1 2.44 2.94 2.44 1.24 0 2-.6 2-1.48 0-.72-.58-1.24-1.52-1.42l-1.94-.36c-2.4-.44-3.86-2.06-3.86-4.16 0-2.68 2.36-4.56 5.08-4.56Zm-11.421.3c2.8 0 4.42 1.62 4.42 3.8 0 1.46-.92 2.66-2.08 3.04 1.28.3 2.52 1.48 2.52 3.32 0 2.32-1.76 4.02-4.44 4.02h-5.72V24.74h5.3Zm21.899.001v11.16h6.12v3.019h-9.28V24.74h3.16ZM18.756 36.34h1.981c1.22 0 1.96-.68 1.96-1.66 0-.98-.72-1.66-1.96-1.66h-1.98v3.32Zm0-5.92h1.72c1.1 0 1.82-.62 1.82-1.54s-.62-1.52-1.86-1.52h-1.68v3.06Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const Bus = (props) => (_jsxs(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const Bus = (props) => (_jsxs(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: [_jsx(Path, { fill: "currentColor", d: "M53.886 24.18V7.51H13.224a3.586 3.586 0 0 0-3.582 3.58v13.09h-1.97v9.195h1.97v16.21c0 1.93 1.57 3.5 3.5 3.5h2.467v3.397h8.597v-3.397h15.065v3.397h8.597v-3.397h3.086l-1.072-4h-36.24V37.231h36.242v11.852l4-1.072V33.375h1.957V24.18h-1.956ZM13.642 35.232V15.693H35.6l-7.07 19.538H13.643Zm36.242 0H30.657l7.07-19.538h12.159v19.538Zm0-21.538H13.644V11.51h36.242v2.184Z" }), _jsx(Path, { fill: "currentColor", d: "M20.008 45.218a1.996 1.996 0 1 0-.64-3.94 1.996 1.996 0 0 0 .64 3.94ZM44.234 45.218a1.996 1.996 0 1 0-.64-3.94 1.996 1.996 0 0 0 .64 3.94Z" })] })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const CableLengthLong = (props) => (_jsx(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const CableLengthLong = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M41.263 11.277h3.186V6.095h3.966v5.168h2.433v8.83c0 3.319-2.22 6.148-5.315 7.206v24.404c0 1.983-.899 3.702-2.511 4.839-1.242.873-2.856 1.362-4.588 1.362-1.732 0-3.385-.476-4.654-1.362-1.666-1.15-2.578-2.855-2.578-4.825v-4.13l-.008-15.39c0-.887-1.785-.913-1.811-.913-.82 0-1.943.317-1.943.912V36.3l.044 15.404c0 1.983-.9 3.702-2.512 4.839-1.242.873-2.855 1.362-4.587 1.362-1.732 0-3.385-.476-4.654-1.362-1.666-1.15-2.578-2.855-2.578-4.825V37.912h5.275v13.805c0 .595 1.123.912 1.943.912.03 0 1.81-.027 1.81-.912L22.186 46h-.003l-.017-5.29v-8.516c0-1.97.912-3.675 2.578-4.825 1.27-.886 2.923-1.362 4.655-1.362 1.731 0 3.345.49 4.586 1.362 1.613 1.137 2.512 2.856 2.512 4.839l-.02 15.404v4.104c0 .595 1.124.912 1.944.912.026 0 1.811-.026 1.811-.912v-24.39c-3.12-1.045-5.367-3.887-5.367-7.219v-8.83h2.433V6.094h3.966v5.182Zm-2.42 8.831c0 2.022 1.811 3.675 4.02 3.675 2.207 0 4.018-1.652 4.018-3.675v-4.865h-8.038v4.865Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const CableLengthMedium = (props) => (_jsx(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const CableLengthMedium = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M36.417 6.095v5.182h3.185V6.095h3.967v5.168h2.433v8.83c0 3.319-2.221 6.148-5.316 7.206v24.404c0 1.983-.898 3.702-2.511 4.839-1.242.873-2.855 1.362-4.587 1.362-1.732 0-3.385-.476-4.654-1.362-1.666-1.15-2.578-2.855-2.578-4.825v-4.13l-.008-15.39c0-.886-1.78-.913-1.81-.913-.82 0-1.944.317-1.944.912v13.805h-5.258l-.017-5.29v-8.516c0-1.97.913-3.675 2.579-4.825 1.268-.886 2.921-1.362 4.653-1.362 1.732 0 3.345.49 4.587 1.362 1.613 1.137 2.512 2.856 2.512 4.839l-.02 15.404v4.104c0 .595 1.124.912 1.944.912.035 0 1.81-.028 1.81-.912v-24.39c-3.119-1.045-5.366-3.887-5.366-7.219v-8.83h2.433V6.094h3.966Zm-2.419 9.148v4.865c0 2.022 1.81 3.675 4.019 3.675 2.207 0 4.019-1.652 4.02-3.675v-4.865h-8.039Z" }) })));
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import Svg, { Path } from 'react-native-svg';
|
|
3
|
-
export const CableLengthShort = (props) => (_jsx(Svg, { viewBox: "0 0 64 64",
|
|
3
|
+
export const CableLengthShort = (props) => (_jsx(Svg, Object.assign({ viewBox: "0 0 64 64" }, props, { children: _jsx(Path, { fill: "currentColor", d: "M39.39 11.264V6.095h-3.966v5.182h-3.186V6.095h-3.966v5.182h-2.433v8.831c0 3.332 2.247 6.174 5.367 7.218v24.391c0 .886-1.785.912-1.811.912-.82 0-1.943-.317-1.943-.912V37.911h-5.275V51.717c0 1.97.912 3.675 2.578 4.825 1.269.886 2.922 1.362 4.654 1.362 1.732 0 3.345-.489 4.587-1.362 1.613-1.137 2.512-2.856 2.512-4.839V27.299c3.094-1.058 5.315-3.887 5.315-7.205v-8.831H39.39v.001Zm-1.533 8.844c0 2.023-1.811 3.675-4.019 3.675s-4.019-1.653-4.019-3.675v-4.865h8.038v4.865Z" }) })));
|