@thecb/components 2.2.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/.eslintrc.json +29 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +18 -0
- package/.github/stale.yml +17 -0
- package/.prettierignore +3 -0
- package/.tool-versions +1 -0
- package/README.md +149 -0
- package/dist/cb-components.cjs.js +77 -0
- package/package.json +96 -0
- package/rollup.config.js +35 -0
- package/src/components/atoms/alert/Alert.js +67 -0
- package/src/components/atoms/alert/Alert.theme.js +71 -0
- package/src/components/atoms/alert/index.js +3 -0
- package/src/components/atoms/amount-callout/AmountCallout.js +27 -0
- package/src/components/atoms/amount-callout/AmountCallout.theme.js +19 -0
- package/src/components/atoms/amount-callout/index.js +3 -0
- package/src/components/atoms/breadcrumb/Breadcrumb.js +50 -0
- package/src/components/atoms/breadcrumb/Breadcrumb.theme.js +25 -0
- package/src/components/atoms/breadcrumb/index.js +3 -0
- package/src/components/atoms/button-with-action/ButtonWithAction.js +128 -0
- package/src/components/atoms/button-with-action/ButtonWithAction.stories.js +125 -0
- package/src/components/atoms/button-with-action/ButtonWithAction.theme.js +360 -0
- package/src/components/atoms/button-with-action/index.js +3 -0
- package/src/components/atoms/button-with-link/ButtonWithLink.js +40 -0
- package/src/components/atoms/button-with-link/index.js +3 -0
- package/src/components/atoms/checkbox/Checkbox.js +143 -0
- package/src/components/atoms/checkbox/Checkbox.theme.js +54 -0
- package/src/components/atoms/checkbox/index.js +3 -0
- package/src/components/atoms/checkbox-list/CheckboxList.js +129 -0
- package/src/components/atoms/checkbox-list/CheckboxList.theme.js +42 -0
- package/src/components/atoms/checkbox-list/index.js +3 -0
- package/src/components/atoms/country-dropdown/CountryDropdown.js +24 -0
- package/src/components/atoms/country-dropdown/index.js +1 -0
- package/src/components/atoms/country-dropdown/options.js +249 -0
- package/src/components/atoms/display-box/DisplayBox.js +22 -0
- package/src/components/atoms/display-box/DisplayBox.theme.js +9 -0
- package/src/components/atoms/display-box/index.js +3 -0
- package/src/components/atoms/display-card/DisplayCard.js +65 -0
- package/src/components/atoms/display-card/index.js +3 -0
- package/src/components/atoms/dropdown/Dropdown.js +299 -0
- package/src/components/atoms/dropdown/Dropdown.theme.js +9 -0
- package/src/components/atoms/dropdown/DropdownIcon.js +31 -0
- package/src/components/atoms/dropdown/index.js +3 -0
- package/src/components/atoms/form-layouts/FormContainer.js +28 -0
- package/src/components/atoms/form-layouts/FormInput.js +218 -0
- package/src/components/atoms/form-layouts/FormInputColumn.js +15 -0
- package/src/components/atoms/form-layouts/FormInputRow.js +26 -0
- package/src/components/atoms/form-layouts/FormLayouts.theme.js +52 -0
- package/src/components/atoms/form-layouts/index.js +6 -0
- package/src/components/atoms/form-select/FormSelect.js +62 -0
- package/src/components/atoms/form-select/FormSelect.styled.js +65 -0
- package/src/components/atoms/form-select/index.js +3 -0
- package/src/components/atoms/formatted-address/FormattedAddress.js +53 -0
- package/src/components/atoms/formatted-address/FormattedAddress.theme.js +11 -0
- package/src/components/atoms/formatted-address/index.js +3 -0
- package/src/components/atoms/hamburger-button/HamburgerButton.js +113 -0
- package/src/components/atoms/hamburger-button/index.js +3 -0
- package/src/components/atoms/heading/Heading.js +37 -0
- package/src/components/atoms/heading/Heading.styled.js +14 -0
- package/src/components/atoms/heading/Heading.theme.js +18 -0
- package/src/components/atoms/heading/index.js +3 -0
- package/src/components/atoms/icons/AccountsAddIcon.js +42 -0
- package/src/components/atoms/icons/AccountsIcon.js +37 -0
- package/src/components/atoms/icons/AccountsIconSmall.js +63 -0
- package/src/components/atoms/icons/ChevronIcon.js +51 -0
- package/src/components/atoms/icons/ForgotPasswordIcon.js +46 -0
- package/src/components/atoms/icons/GoToEmailIcon.js +31 -0
- package/src/components/atoms/icons/Icons.theme.js +38 -0
- package/src/components/atoms/icons/PaymentMethodIcon.js +42 -0
- package/src/components/atoms/icons/PaymentsIconSmall.js +63 -0
- package/src/components/atoms/icons/ProfileIconSmall.js +44 -0
- package/src/components/atoms/icons/PropertiesAddIcon.js +70 -0
- package/src/components/atoms/icons/PropertiesIconSmall.js +32 -0
- package/src/components/atoms/icons/SettingsIconSmall.js +63 -0
- package/src/components/atoms/icons/VerifiedEmailIcon.js +53 -0
- package/src/components/atoms/icons/index.js +28 -0
- package/src/components/atoms/index.js +33 -0
- package/src/components/atoms/labeled-amount/LabeledAmount.js +35 -0
- package/src/components/atoms/labeled-amount/LabeledAmount.theme.js +10 -0
- package/src/components/atoms/labeled-amount/index.js +3 -0
- package/src/components/atoms/layouts/Box.js +83 -0
- package/src/components/atoms/layouts/Box.styled.js +131 -0
- package/src/components/atoms/layouts/Center.js +28 -0
- package/src/components/atoms/layouts/Center.styled.js +18 -0
- package/src/components/atoms/layouts/Cluster.js +37 -0
- package/src/components/atoms/layouts/Cluster.styled.js +21 -0
- package/src/components/atoms/layouts/Cover.js +49 -0
- package/src/components/atoms/layouts/Cover.styled.js +29 -0
- package/src/components/atoms/layouts/Frame.js +28 -0
- package/src/components/atoms/layouts/Frame.styled.js +27 -0
- package/src/components/atoms/layouts/Grid.js +38 -0
- package/src/components/atoms/layouts/Grid.styled.js +22 -0
- package/src/components/atoms/layouts/Imposter.js +52 -0
- package/src/components/atoms/layouts/Imposter.styled.js +19 -0
- package/src/components/atoms/layouts/Motion.js +51 -0
- package/src/components/atoms/layouts/Motion.styled.js +41 -0
- package/src/components/atoms/layouts/Reel.js +28 -0
- package/src/components/atoms/layouts/Reel.styled.js +17 -0
- package/src/components/atoms/layouts/Sidebar.js +42 -0
- package/src/components/atoms/layouts/Sidebar.styled.js +38 -0
- package/src/components/atoms/layouts/Stack.js +36 -0
- package/src/components/atoms/layouts/Stack.styled.js +30 -0
- package/src/components/atoms/layouts/Switcher.js +64 -0
- package/src/components/atoms/layouts/Switcher.styled.js +44 -0
- package/src/components/atoms/layouts/examples/FixedSizeContainer.js +22 -0
- package/src/components/atoms/layouts/examples/FixedSizeContainer.styled.js +20 -0
- package/src/components/atoms/layouts/examples/LayoutContentBlock.js +27 -0
- package/src/components/atoms/layouts/examples/LayoutContentBlock.styled.js +15 -0
- package/src/components/atoms/layouts/examples/ResizingContainer.js +49 -0
- package/src/components/atoms/layouts/examples/ResizingContainer.styled.js +39 -0
- package/src/components/atoms/layouts/examples/cluster-example/ClusterExample.js +10 -0
- package/src/components/atoms/layouts/examples/cluster-example/ClusterExample.stories.js +97 -0
- package/src/components/atoms/layouts/examples/grid-example/GridExample.js +49 -0
- package/src/components/atoms/layouts/examples/grid-example/GridExample.stories.js +44 -0
- package/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.js +11 -0
- package/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.stories.js +87 -0
- package/src/components/atoms/layouts/examples/stack-example/StackExample.js +27 -0
- package/src/components/atoms/layouts/examples/stack-example/StackExample.stories.js +69 -0
- package/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.js +38 -0
- package/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.stories.js +65 -0
- package/src/components/atoms/layouts/index.js +27 -0
- package/src/components/atoms/line-item/LineItem.js +30 -0
- package/src/components/atoms/line-item/LineItem.theme.js +7 -0
- package/src/components/atoms/line-item/index.js +3 -0
- package/src/components/atoms/link/ExternalLink.js +50 -0
- package/src/components/atoms/link/ExternalLink.styled.js +26 -0
- package/src/components/atoms/link/InternalLink.js +51 -0
- package/src/components/atoms/link/InternalLink.styled.js +39 -0
- package/src/components/atoms/link/Link.theme.js +8 -0
- package/src/components/atoms/link/index.js +4 -0
- package/src/components/atoms/nav-footer/NavFooter.js +57 -0
- package/src/components/atoms/nav-footer/index.js +3 -0
- package/src/components/atoms/nav-header/NavHeader.js +36 -0
- package/src/components/atoms/nav-header/index.js +3 -0
- package/src/components/atoms/paragraph/Paragraph.js +31 -0
- package/src/components/atoms/paragraph/Paragraph.styled.js +13 -0
- package/src/components/atoms/paragraph/Paragraph.theme.js +18 -0
- package/src/components/atoms/paragraph/index.js +3 -0
- package/src/components/atoms/password-requirements/PasswordRequirements.js +116 -0
- package/src/components/atoms/password-requirements/index.js +3 -0
- package/src/components/atoms/placeholder/Placeholder.js +122 -0
- package/src/components/atoms/placeholder/Placeholder.theme.js +9 -0
- package/src/components/atoms/placeholder/index.js +3 -0
- package/src/components/atoms/processing-fee/ProcessingFee.js +43 -0
- package/src/components/atoms/processing-fee/ProcessingFee.theme.js +7 -0
- package/src/components/atoms/processing-fee/index.js +3 -0
- package/src/components/atoms/radio-button/RadioButton.js +101 -0
- package/src/components/atoms/radio-button/RadioButton.theme.js +9 -0
- package/src/components/atoms/radio-button/index.js +3 -0
- package/src/components/atoms/solid-divider/SolidDivider.js +22 -0
- package/src/components/atoms/solid-divider/SolidDivider.theme.js +8 -0
- package/src/components/atoms/solid-divider/index.js +3 -0
- package/src/components/atoms/spinner/Spinner.js +61 -0
- package/src/components/atoms/spinner/Spinner.theme.js +5 -0
- package/src/components/atoms/spinner/index.js +3 -0
- package/src/components/atoms/state-province-dropdown/StateProvinceDropdown.js +28 -0
- package/src/components/atoms/state-province-dropdown/index.js +3 -0
- package/src/components/atoms/state-province-dropdown/options.js +3837 -0
- package/src/components/atoms/text/Text.js +37 -0
- package/src/components/atoms/text/Text.styled.js +32 -0
- package/src/components/atoms/text/Text.theme.js +22 -0
- package/src/components/atoms/text/index.js +3 -0
- package/src/components/atoms/toggle-switch/ToggleSwitch.js +212 -0
- package/src/components/atoms/toggle-switch/ToggleSwitch.theme.js +36 -0
- package/src/components/atoms/toggle-switch/index.js +3 -0
- package/src/components/index.js +3 -0
- package/src/components/molecules/address-form/AddressForm.js +110 -0
- package/src/components/molecules/address-form/AddressForm.state.js +52 -0
- package/src/components/molecules/address-form/index.js +11 -0
- package/src/components/molecules/change-password-form/ChangePasswordForm.js +92 -0
- package/src/components/molecules/change-password-form/ChangePasswordForm.state.js +33 -0
- package/src/components/molecules/change-password-form/index.js +11 -0
- package/src/components/molecules/collapsible-section/CollapsibleSection.js +126 -0
- package/src/components/molecules/collapsible-section/CollapsibleSection.theme.js +11 -0
- package/src/components/molecules/collapsible-section/index.js +3 -0
- package/src/components/molecules/edit-name-form/EditNameForm.js +51 -0
- package/src/components/molecules/edit-name-form/EditNameForm.state.js +14 -0
- package/src/components/molecules/edit-name-form/index.js +11 -0
- package/src/components/molecules/email-form/EmailForm.js +55 -0
- package/src/components/molecules/email-form/EmailForm.state.js +19 -0
- package/src/components/molecules/email-form/index.js +11 -0
- package/src/components/molecules/forgot-password-form/ForgotPasswordForm.js +32 -0
- package/src/components/molecules/forgot-password-form/ForgotPasswordForm.state.js +11 -0
- package/src/components/molecules/forgot-password-form/index.js +11 -0
- package/src/components/molecules/highlight-tab-row/HighlightTabRow.js +62 -0
- package/src/components/molecules/highlight-tab-row/HighlightTabRow.theme.js +7 -0
- package/src/components/molecules/highlight-tab-row/index.js +8 -0
- package/src/components/molecules/index.js +24 -0
- package/src/components/molecules/login-form/LoginForm.js +46 -0
- package/src/components/molecules/login-form/LoginForm.state.js +14 -0
- package/src/components/molecules/login-form/index.js +11 -0
- package/src/components/molecules/modal/Modal.js +138 -0
- package/src/components/molecules/modal/index.js +3 -0
- package/src/components/molecules/module/Module.js +42 -0
- package/src/components/molecules/module/Module.theme.js +30 -0
- package/src/components/molecules/module/index.js +8 -0
- package/src/components/molecules/nav-menu/NavMenu.theme.js +5 -0
- package/src/components/molecules/nav-menu/NavMenuDesktop.js +39 -0
- package/src/components/molecules/nav-menu/NavMenuMobile.js +63 -0
- package/src/components/molecules/nav-menu/index.js +4 -0
- package/src/components/molecules/obligation/Obligation.js +69 -0
- package/src/components/molecules/obligation/icons/AccountBillIcon.js +89 -0
- package/src/components/molecules/obligation/icons/AccountConstructionIcon.js +99 -0
- package/src/components/molecules/obligation/icons/AccountDentalIcon.js +94 -0
- package/src/components/molecules/obligation/icons/AccountElectricIcon.js +99 -0
- package/src/components/molecules/obligation/icons/AccountGarbageIcon.js +94 -0
- package/src/components/molecules/obligation/icons/AccountGasIcon.js +94 -0
- package/src/components/molecules/obligation/icons/AccountGenericIcon.js +89 -0
- package/src/components/molecules/obligation/icons/AccountMedicalIcon.js +94 -0
- package/src/components/molecules/obligation/icons/AccountWaterIcon.js +94 -0
- package/src/components/molecules/obligation/icons/PropertyApartmentIcon.js +99 -0
- package/src/components/molecules/obligation/icons/PropertyBusinessIcon.js +94 -0
- package/src/components/molecules/obligation/icons/PropertyCarIcon.js +99 -0
- package/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js +100 -0
- package/src/components/molecules/obligation/icons/PropertyGarageIcon.js +96 -0
- package/src/components/molecules/obligation/icons/PropertyLandIcon.js +99 -0
- package/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js +99 -0
- package/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +94 -0
- package/src/components/molecules/obligation/icons/PropertyStorefrontIcon.js +100 -0
- package/src/components/molecules/obligation/icons/index.js +60 -0
- package/src/components/molecules/obligation/index.js +3 -0
- package/src/components/molecules/obligation/modules/AmountModule.js +36 -0
- package/src/components/molecules/obligation/modules/IconModule.js +29 -0
- package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +67 -0
- package/src/components/molecules/obligation/modules/TitleModule.js +25 -0
- package/src/components/molecules/obligation/modules/index.js +6 -0
- package/src/components/molecules/payment-button-bar/PaymentButtonBar.js +80 -0
- package/src/components/molecules/payment-button-bar/index.js +3 -0
- package/src/components/molecules/payment-details/PaymentDetails.js +158 -0
- package/src/components/molecules/payment-details/PaymentDetails.theme.js +11 -0
- package/src/components/molecules/payment-details/index.js +1 -0
- package/src/components/molecules/phone-form/PhoneForm.js +44 -0
- package/src/components/molecules/phone-form/PhoneForm.state.js +17 -0
- package/src/components/molecules/phone-form/index.js +11 -0
- package/src/components/molecules/radio-section/RadioSection.js +205 -0
- package/src/components/molecules/radio-section/RadioSection.theme.js +15 -0
- package/src/components/molecules/radio-section/index.js +3 -0
- package/src/components/molecules/registration-form/RegistrationForm.js +104 -0
- package/src/components/molecules/registration-form/RegistrationForm.state.js +40 -0
- package/src/components/molecules/registration-form/index.js +11 -0
- package/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.js +56 -0
- package/src/components/molecules/reset-confirmation-form/index.js +3 -0
- package/src/components/molecules/reset-password-form/ResetPasswordForm.js +67 -0
- package/src/components/molecules/reset-password-form/ResetPasswordForm.state.js +30 -0
- package/src/components/molecules/reset-password-form/index.js +11 -0
- package/src/components/molecules/reset-password-success/ResetPasswordSuccess.js +55 -0
- package/src/components/molecules/reset-password-success/index.js +3 -0
- package/src/components/molecules/tab-sidebar/TabSidebar.js +92 -0
- package/src/components/molecules/tab-sidebar/TabSidebar.theme.js +9 -0
- package/src/components/molecules/tab-sidebar/index.js +3 -0
- package/src/components/molecules/terms-and-conditions/TermsAndConditions.js +73 -0
- package/src/components/molecules/terms-and-conditions/index.js +3 -0
- package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +64 -0
- package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.theme.js +28 -0
- package/src/components/molecules/terms-and-conditions-modal/index.js +3 -0
- package/src/components/molecules/workflow-tile/WorkflowTile.js +58 -0
- package/src/components/molecules/workflow-tile/index.js +3 -0
- package/src/components/templates/center-single/CenterSingle.js +61 -0
- package/src/components/templates/center-single/index.js +3 -0
- package/src/components/templates/center-stack/CenterStack.js +49 -0
- package/src/components/templates/center-stack/index.js +3 -0
- package/src/components/templates/default-page-template/DefaultPageTemplate.js +49 -0
- package/src/components/templates/default-page-template/index.js +3 -0
- package/src/components/templates/index.js +5 -0
- package/src/components/templates/sidebar-single-content/SidebarSingleContent.js +60 -0
- package/src/components/templates/sidebar-single-content/index.js +3 -0
- package/src/components/templates/sidebar-stack-content/SidebarStackContent.js +81 -0
- package/src/components/templates/sidebar-stack-content/index.js +3 -0
- package/src/components/templates/templates.theme.js +5 -0
- package/src/components/withWindowSize.js +50 -0
- package/src/constants/colors.js +178 -0
- package/src/constants/regex_constants.js +1 -0
- package/src/constants/style_constants.js +21 -0
- package/src/deprecated/colors.js +154 -0
- package/src/deprecated/components/radio-button/index.js +3 -0
- package/src/deprecated/components/radio-button/radio-button.js +44 -0
- package/src/deprecated/icons/AlertErrorIcon.js +42 -0
- package/src/deprecated/icons/AlertInfoIcon.js +42 -0
- package/src/deprecated/icons/AlertSuccessIcon.js +42 -0
- package/src/deprecated/icons/AlertWarningIcon.js +36 -0
- package/src/deprecated/icons/BankIcon.js +82 -0
- package/src/deprecated/icons/GenericCard.js +39 -0
- package/src/deprecated/icons/IconAdd.js +44 -0
- package/src/deprecated/icons/IconCheck.js +23 -0
- package/src/deprecated/icons/IconCheckEmail.js +46 -0
- package/src/deprecated/icons/IconChevron.js +35 -0
- package/src/deprecated/icons/IconEmailVerified.js +62 -0
- package/src/deprecated/icons/IconEye.js +32 -0
- package/src/deprecated/icons/IconEyeSlash.js +48 -0
- package/src/deprecated/icons/IconInvalid.js +69 -0
- package/src/deprecated/icons/IconNeutral.js +27 -0
- package/src/deprecated/icons/IconQuit.js +32 -0
- package/src/deprecated/icons/IconValid.js +72 -0
- package/src/deprecated/icons/IconWarn.js +28 -0
- package/src/deprecated/icons/index.js +40 -0
- package/src/deprecated/index.js +1 -0
- package/src/deprecated/spinner/Spinner.js +68 -0
- package/src/deprecated/spinner/index.js +1 -0
- package/src/deprecated/utility/__tests__/safeConcat.spec.js +59 -0
- package/src/deprecated/utility/__tests__/validateKeyType.spec.js +116 -0
- package/src/deprecated/utility/index.js +2 -0
- package/src/deprecated/utility/safeConcat.js +10 -0
- package/src/deprecated/utility/validateKeyType.js +19 -0
- package/src/index.js +2 -0
- package/src/util/formats.js +30 -0
- package/src/util/general.js +15 -0
- package/src/util/inputValidationUtils.js +257 -0
- package/src/util/router-utils.js +23 -0
- package/src/util/themeUtils.js +144 -0
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
const PropertyLandIcon = () => (
|
|
4
|
+
<svg
|
|
5
|
+
width="81px"
|
|
6
|
+
height="81px"
|
|
7
|
+
viewBox="0 0 81 81"
|
|
8
|
+
version="1.1"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
|
+
>
|
|
12
|
+
<defs>
|
|
13
|
+
<circle id="land-path-1" cx="33.5" cy="33.5" r="33.5"></circle>
|
|
14
|
+
<filter
|
|
15
|
+
x="-17.2%"
|
|
16
|
+
y="-14.2%"
|
|
17
|
+
width="134.3%"
|
|
18
|
+
height="134.3%"
|
|
19
|
+
filterUnits="objectBoundingBox"
|
|
20
|
+
id="land-filter-2"
|
|
21
|
+
>
|
|
22
|
+
<feOffset
|
|
23
|
+
dx="0"
|
|
24
|
+
dy="-4"
|
|
25
|
+
in="SourceAlpha"
|
|
26
|
+
result="shadowOffsetOuter1"
|
|
27
|
+
></feOffset>
|
|
28
|
+
<feColorMatrix
|
|
29
|
+
values="0 0 0 0 0.964705882 0 0 0 0 0.964705882 0 0 0 0 0.976470588 0 0 0 1 0"
|
|
30
|
+
type="matrix"
|
|
31
|
+
in="shadowOffsetOuter1"
|
|
32
|
+
result="shadowMatrixOuter1"
|
|
33
|
+
></feColorMatrix>
|
|
34
|
+
<feOffset
|
|
35
|
+
dx="0"
|
|
36
|
+
dy="2"
|
|
37
|
+
in="SourceAlpha"
|
|
38
|
+
result="shadowOffsetOuter2"
|
|
39
|
+
></feOffset>
|
|
40
|
+
<feGaussianBlur
|
|
41
|
+
stdDeviation="3.5"
|
|
42
|
+
in="shadowOffsetOuter2"
|
|
43
|
+
result="shadowBlurOuter2"
|
|
44
|
+
></feGaussianBlur>
|
|
45
|
+
<feColorMatrix
|
|
46
|
+
values="0 0 0 0 0.161570617 0 0 0 0 0.163300979 0 0 0 0 0.199501812 0 0 0 0.3 0"
|
|
47
|
+
type="matrix"
|
|
48
|
+
in="shadowBlurOuter2"
|
|
49
|
+
result="shadowMatrixOuter2"
|
|
50
|
+
></feColorMatrix>
|
|
51
|
+
<feMerge>
|
|
52
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
53
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
54
|
+
</feMerge>
|
|
55
|
+
</filter>
|
|
56
|
+
</defs>
|
|
57
|
+
<g
|
|
58
|
+
id="land-Profile-/-Icons"
|
|
59
|
+
stroke="none"
|
|
60
|
+
strokeWidth="1"
|
|
61
|
+
fill="none"
|
|
62
|
+
fillRule="evenodd"
|
|
63
|
+
>
|
|
64
|
+
<g id="Outlined" transform="translate(7.000000, -571.000000)">
|
|
65
|
+
<g
|
|
66
|
+
id="land-Potentail-future-property"
|
|
67
|
+
transform="translate(0.000000, 231.000000)"
|
|
68
|
+
>
|
|
69
|
+
<g
|
|
70
|
+
id="Profile-Obligation-Icon-/-Property---Land"
|
|
71
|
+
transform="translate(0.000000, 345.000000)"
|
|
72
|
+
>
|
|
73
|
+
<g id="Oval-Copy-6">
|
|
74
|
+
<use
|
|
75
|
+
fill="black"
|
|
76
|
+
fillOpacity="1"
|
|
77
|
+
filter="url(#land-filter-2)"
|
|
78
|
+
xlinkHref="#land-path-1"
|
|
79
|
+
></use>
|
|
80
|
+
<use
|
|
81
|
+
fill="#FFFFFF"
|
|
82
|
+
fillRule="evenodd"
|
|
83
|
+
xlinkHref="#land-path-1"
|
|
84
|
+
></use>
|
|
85
|
+
</g>
|
|
86
|
+
<path
|
|
87
|
+
d="M36.9999642,49.9999905 C37.3749633,49.9999905 37.6562127,49.8437408 37.8437122,49.5312416 C38.0312118,49.2187423 38.0416287,48.8958261 37.8749622,48.5624939 L37.8749622,48.5624939 L35.9999666,45.5000012 L35.9999666,44.0000048 L44.5624462,44.0000048 C44.8541125,44.0000048 45.1145279,43.927088 45.3436943,43.7812553 C45.5728608,43.6354226 45.7499434,43.4375061 45.8749431,43.1875067 C45.9999428,42.9375073 46.0416097,42.6770909 45.9999428,42.4062586 C45.9582759,42.1354262 45.8332762,41.8750098 45.6249437,41.6250104 L45.6249437,41.6250104 L40.6249556,36.0000238 L42.562451,36.0000238 C43.1874495,36.0000238 43.6249484,35.7291915 43.8749478,35.1875258 C44.1249472,34.6458601 44.0624474,34.1458613 43.6874483,33.6875294 L43.6874483,33.6875294 L38.7499601,28.0000429 L40.5624557,28.0000429 C40.854122,28.0000429 41.1249544,27.9271261 41.3749538,27.7812934 C41.6249532,27.6354608 41.8020358,27.4271273 41.9062025,27.1562949 C42.0103693,26.8854626 42.0416192,26.6146292 41.9999523,26.3437969 C41.9582854,26.0729645 41.8332857,25.8333811 41.6249532,25.6250486 L41.6249532,25.6250486 L34.7499696,18.312566 C34.5416371,18.1042335 34.2916377,18.0000668 33.9999714,18.0000668 C33.7083051,18.0000668 33.4583057,18.1042335 33.2499732,18.312566 L33.2499732,18.312566 L26.3749896,25.6250486 C26.1666571,25.8333811 26.0416573,26.0729645 25.9999905,26.3437969 C25.9583236,26.6146292 25.9895735,26.8854626 26.0937402,27.1562949 C26.197907,27.4271273 26.3749896,27.6354608 26.624989,27.7812934 C26.8749884,27.9271261 27.1458207,28.0000429 27.437487,28.0000429 L27.437487,28.0000429 L29.2499827,28.0000429 L24.3124945,33.6875294 C23.9374954,34.1458613 23.8749955,34.6458601 24.1249949,35.1875258 C24.3749943,35.7291915 24.8124933,36.0000238 25.4374918,36.0000238 L25.4374918,36.0000238 L27.3749872,36.0000238 L22.3749991,41.6250104 C22.1666666,41.8750098 22.0416669,42.1354262 22,42.4062586 C21.9583331,42.6770909 22,42.9375073 22.1249997,43.1875067 C22.2499994,43.4375061 22.427082,43.6354226 22.6562484,43.7812553 C22.8854149,43.927088 23.1458303,44.0000048 23.4374966,44.0000048 L23.4374966,44.0000048 L31.9999762,44.0000048 L31.9999762,45.5000012 L30.1249806,48.5624939 C29.958314,48.8958261 29.968731,49.2187423 30.1562306,49.5312416 C30.3437301,49.8437408 30.6249794,49.9999905 30.9999785,49.9999905 L30.9999785,49.9999905 L36.9999642,49.9999905 Z"
|
|
88
|
+
id="t"
|
|
89
|
+
fill="#292A33"
|
|
90
|
+
fillRule="nonzero"
|
|
91
|
+
></path>
|
|
92
|
+
</g>
|
|
93
|
+
</g>
|
|
94
|
+
</g>
|
|
95
|
+
</g>
|
|
96
|
+
</svg>
|
|
97
|
+
);
|
|
98
|
+
|
|
99
|
+
export default PropertyLandIcon;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
const PropertyMotorcycleIcon = () => (
|
|
4
|
+
<svg
|
|
5
|
+
width="81px"
|
|
6
|
+
height="81px"
|
|
7
|
+
viewBox="0 0 81 81"
|
|
8
|
+
version="1.1"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
|
+
>
|
|
12
|
+
<defs>
|
|
13
|
+
<circle id="motorcycle-path-1" cx="33.5" cy="33.5" r="33.5"></circle>
|
|
14
|
+
<filter
|
|
15
|
+
x="-17.2%"
|
|
16
|
+
y="-14.2%"
|
|
17
|
+
width="134.3%"
|
|
18
|
+
height="134.3%"
|
|
19
|
+
filterUnits="objectBoundingBox"
|
|
20
|
+
id="motorcycle-filter-2"
|
|
21
|
+
>
|
|
22
|
+
<feOffset
|
|
23
|
+
dx="0"
|
|
24
|
+
dy="-4"
|
|
25
|
+
in="SourceAlpha"
|
|
26
|
+
result="shadowOffsetOuter1"
|
|
27
|
+
></feOffset>
|
|
28
|
+
<feColorMatrix
|
|
29
|
+
values="0 0 0 0 0.964705882 0 0 0 0 0.964705882 0 0 0 0 0.976470588 0 0 0 1 0"
|
|
30
|
+
type="matrix"
|
|
31
|
+
in="shadowOffsetOuter1"
|
|
32
|
+
result="shadowMatrixOuter1"
|
|
33
|
+
></feColorMatrix>
|
|
34
|
+
<feOffset
|
|
35
|
+
dx="0"
|
|
36
|
+
dy="2"
|
|
37
|
+
in="SourceAlpha"
|
|
38
|
+
result="shadowOffsetOuter2"
|
|
39
|
+
></feOffset>
|
|
40
|
+
<feGaussianBlur
|
|
41
|
+
stdDeviation="3.5"
|
|
42
|
+
in="shadowOffsetOuter2"
|
|
43
|
+
result="shadowBlurOuter2"
|
|
44
|
+
></feGaussianBlur>
|
|
45
|
+
<feColorMatrix
|
|
46
|
+
values="0 0 0 0 0.161570617 0 0 0 0 0.163300979 0 0 0 0 0.199501812 0 0 0 0.3 0"
|
|
47
|
+
type="matrix"
|
|
48
|
+
in="shadowBlurOuter2"
|
|
49
|
+
result="shadowMatrixOuter2"
|
|
50
|
+
></feColorMatrix>
|
|
51
|
+
<feMerge>
|
|
52
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
53
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
54
|
+
</feMerge>
|
|
55
|
+
</filter>
|
|
56
|
+
</defs>
|
|
57
|
+
<g
|
|
58
|
+
id="motorcycle-Profile-/-Icons"
|
|
59
|
+
stroke="none"
|
|
60
|
+
strokeWidth="1"
|
|
61
|
+
fill="none"
|
|
62
|
+
fillRule="evenodd"
|
|
63
|
+
>
|
|
64
|
+
<g id="Outlined" transform="translate(7.000000, -801.000000)">
|
|
65
|
+
<g
|
|
66
|
+
id="Potentail-future-property"
|
|
67
|
+
transform="translate(0.000000, 231.000000)"
|
|
68
|
+
>
|
|
69
|
+
<g
|
|
70
|
+
id="motorcycle-Profile-Obligation-Icon-/-Property---Motorcycle"
|
|
71
|
+
transform="translate(0.000000, 575.000000)"
|
|
72
|
+
>
|
|
73
|
+
<g id="Oval-Copy-6">
|
|
74
|
+
<use
|
|
75
|
+
fill="black"
|
|
76
|
+
fillOpacity="1"
|
|
77
|
+
filter="url(#motorcycle-filter-2)"
|
|
78
|
+
xlinkHref="#motorcycle-path-1"
|
|
79
|
+
></use>
|
|
80
|
+
<use
|
|
81
|
+
fill="#FFFFFF"
|
|
82
|
+
fillRule="evenodd"
|
|
83
|
+
xlinkHref="#motorcycle-path-1"
|
|
84
|
+
></use>
|
|
85
|
+
</g>
|
|
86
|
+
<path
|
|
87
|
+
d="M45.9686738,46 C47.4061704,46 48.7499171,45.6458339 49.9999142,44.9375025 C51.2499112,44.2291712 52.2290758,43.2500066 52.9374072,42.0000095 C53.6457385,40.7500125 53.9999046,39.4062657 53.9999046,37.9687691 C53.9999046,36.5312726 53.6353225,35.2083587 52.9061572,34.0000286 C52.176992,32.7916985 51.2082443,31.8229508 49.9999142,31.0937855 C48.791584,30.3646203 47.4790872,30.0000381 46.0624236,30.0000381 C45.1457588,30.0000381 44.2707608,30.1458708 43.4374298,30.4375371 L43.4374298,30.4375371 L41.3749347,27.0000453 L46.4999225,27.0000453 C46.9165885,27.0000453 47.2707537,26.8542126 47.56242,26.5625463 C47.8540863,26.2708801 47.9999189,25.9167149 47.9999189,25.5000572 L47.9999189,25.5000572 L47.9999189,23.5000572 C47.9999189,23.0833877 47.8540863,22.7292225 47.56242,22.4375562 C47.2707537,22.1458899 46.9165885,22.0000572 46.4999225,22.0000572 L46.4999225,22.0000572 L43.6874292,22.0000572 C43.2290973,22.0000572 42.8540982,22.1667238 42.5624319,22.5000572 L42.5624319,22.5000572 L40.1874376,25.1250498 L38.8124408,22.7500554 C38.5207746,22.2500566 38.0832756,22.0000572 37.499944,22.0000572 L37.499944,22.0000572 L32.4999559,22.0000572 C32.2082896,22.0000572 31.9687072,22.093807 31.7812076,22.2813065 C31.5937081,22.4688061 31.4999583,22.7083885 31.4999583,23.0000572 L31.4999583,23.0000572 L31.4999583,24.0000572 C31.4999583,24.2917187 31.5937081,24.5313012 31.7812076,24.7188007 C31.9687072,24.9063003 32.2082896,25.0000572 32.4999559,25.0000572 L32.4999559,25.0000572 L36.6249461,25.0000572 L37.8749431,27.0000453 L28.249966,27.0000453 C27.6249675,26.2083802 26.8749693,25.6042156 25.9999714,25.1875496 C24.9583069,24.7292177 23.6249771,24.5000572 21.9999809,24.5000572 L21.9999809,24.5000572 L18.5624891,24.5000572 C18.1041572,24.5000572 17.7291581,24.6458839 17.4374918,24.9375502 C17.1458255,25.2292165 16.9999928,25.5833817 16.9999928,26.0000572 C16.9999928,26.4167137 17.1458255,26.7708789 17.4374918,27.0625452 C17.7291581,27.3542114 18.0833233,27.5000441 18.4999893,27.5000441 L18.4999893,27.5000441 L21.9999809,27.5000441 C23.3333108,27.5000441 24.3333084,28.0208759 24.9999738,29.0625404 L24.9999738,29.0625404 L24.2499756,30.3125374 C23.4166445,30.062538 22.5624796,29.9583713 21.6874817,30.0000381 C20.3124849,30.041705 19.041655,30.4167041 17.8749908,31.1250355 C16.7083266,31.8333668 15.7812458,32.7812815 15.0937474,33.9687787 C14.406249,35.1562759 14.0416669,36.4375228 14,37.8125195 C13.9583331,39.2708491 14.2916663,40.6354298 14.9999976,41.9062598 C15.7083289,43.1770897 16.6874936,44.1770874 17.9374906,44.9062526 C19.1874876,45.6354179 20.5416514,46 21.9999809,46 C23.8333096,46 25.4687227,45.4375013 26.9062192,44.312504 C28.3437158,43.1875067 29.2916305,41.7500101 29.7499624,40.0000143 L29.7499624,40.0000143 L34.9999499,40.0000143 C35.4166159,40.0000143 35.7811981,39.8437647 36.0936973,39.5312654 C36.4061966,39.2187662 36.5416132,38.854184 36.4999464,38.437518 C36.4582795,36.9375216 36.7395288,35.500025 37.3436943,34.1250283 C37.9478599,32.7500316 38.8332738,31.5833674 39.999938,30.6250367 L39.999938,30.6250367 L40.8124361,31.9375335 C39.9374382,32.6875317 39.2499398,33.5937796 38.749941,34.656277 C38.2499422,35.7187745 37.9999428,36.8541888 37.9999428,38.0625189 C37.9999428,39.4791825 38.3541089,40.7916794 39.0624402,42.0000095 C39.7707716,43.2083397 40.7395193,44.1770874 41.9686833,44.9062526 C43.1978474,45.6354179 44.5311772,46 45.9686738,46 Z M21.9999809,43.0000072 C20.6249842,43.0000072 19.447904,42.5104253 18.4687393,41.5312607 C17.4895747,40.552096 16.9999928,39.3750158 16.9999928,38.0000191 C16.9999928,36.6250224 17.4895747,35.4479421 18.4687393,34.4687775 C19.447904,33.4896128 20.6249842,33.000031 21.9999809,33.000031 C22.2499803,33.000031 22.4999797,33.020864 22.7499791,33.0625308 L22.7499791,33.0625308 L20.1874852,37.7500197 C19.895819,38.2500185 19.895819,38.7500173 20.1874852,39.2500161 C20.4791515,39.7500149 20.9166505,40.0000143 21.4999821,40.0000143 L21.4999821,40.0000143 L26.56247,40.0000143 C26.1874709,40.9166791 25.5833054,41.6458434 24.7499744,42.1875091 C23.9166433,42.7291748 22.9999785,43.0000072 21.9999809,43.0000072 Z M46.2499231,43.0000072 C44.8332595,43.08334 43.6040964,42.625008 42.5624319,41.6250104 C41.5207674,40.6250128 40.9999356,39.4166827 40.9999356,38.0000191 C40.9999356,36.6666892 41.4582675,35.520858 42.3749323,34.5625273 L42.3749323,34.5625273 L45.4999249,39.6875151 C45.6249246,39.9375145 45.8228411,40.0937641 46.0936735,40.1562639 C46.3645059,40.2187638 46.6040893,40.1875139 46.8124218,40.0625142 L46.8124218,40.0625142 L47.6874197,39.5000155 C47.9374191,39.3750158 48.0936687,39.1770993 48.1561686,38.9062669 C48.2186684,38.6354345 48.1874185,38.3958511 48.0624188,38.1875186 L48.0624188,38.1875186 L44.9999356,33.1250307 C45.3332583,33.0416979 45.6665915,33.000031 45.9999237,33.000031 C47.4165873,33.000031 48.6249174,33.5208628 49.6249151,34.5625273 C50.6249127,35.6041918 51.0832446,36.8333549 50.9999118,38.2500185 C50.916579,39.5416824 50.4269962,40.6354298 49.5311653,41.5312607 C48.6353344,42.4270915 47.541587,42.9166743 46.2499231,43.0000072 Z"
|
|
88
|
+
id="m"
|
|
89
|
+
fill="#292A33"
|
|
90
|
+
fillRule="nonzero"
|
|
91
|
+
></path>
|
|
92
|
+
</g>
|
|
93
|
+
</g>
|
|
94
|
+
</g>
|
|
95
|
+
</g>
|
|
96
|
+
</svg>
|
|
97
|
+
);
|
|
98
|
+
|
|
99
|
+
export default PropertyMotorcycleIcon;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
const PropertyPersonalIcon = () => (
|
|
4
|
+
<svg
|
|
5
|
+
width="81px"
|
|
6
|
+
height="81px"
|
|
7
|
+
viewBox="0 0 81 81"
|
|
8
|
+
version="1.1"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
|
+
>
|
|
12
|
+
<defs>
|
|
13
|
+
<circle
|
|
14
|
+
id="property-personal-path-1"
|
|
15
|
+
cx="33.5"
|
|
16
|
+
cy="33.5"
|
|
17
|
+
r="33.5"
|
|
18
|
+
></circle>
|
|
19
|
+
<filter
|
|
20
|
+
x="-17.2%"
|
|
21
|
+
y="-14.2%"
|
|
22
|
+
width="134.3%"
|
|
23
|
+
height="134.3%"
|
|
24
|
+
filterUnits="objectBoundingBox"
|
|
25
|
+
id="property-personal-filter-2"
|
|
26
|
+
>
|
|
27
|
+
<feOffset
|
|
28
|
+
dx="0"
|
|
29
|
+
dy="-4"
|
|
30
|
+
in="SourceAlpha"
|
|
31
|
+
result="shadowOffsetOuter1"
|
|
32
|
+
></feOffset>
|
|
33
|
+
<feColorMatrix
|
|
34
|
+
values="0 0 0 0 0.964705882 0 0 0 0 0.964705882 0 0 0 0 0.976470588 0 0 0 1 0"
|
|
35
|
+
type="matrix"
|
|
36
|
+
in="shadowOffsetOuter1"
|
|
37
|
+
result="shadowMatrixOuter1"
|
|
38
|
+
></feColorMatrix>
|
|
39
|
+
<feOffset
|
|
40
|
+
dx="0"
|
|
41
|
+
dy="2"
|
|
42
|
+
in="SourceAlpha"
|
|
43
|
+
result="shadowOffsetOuter2"
|
|
44
|
+
></feOffset>
|
|
45
|
+
<feGaussianBlur
|
|
46
|
+
stdDeviation="3.5"
|
|
47
|
+
in="shadowOffsetOuter2"
|
|
48
|
+
result="shadowBlurOuter2"
|
|
49
|
+
></feGaussianBlur>
|
|
50
|
+
<feColorMatrix
|
|
51
|
+
values="0 0 0 0 0.161570617 0 0 0 0 0.163300979 0 0 0 0 0.199501812 0 0 0 0.3 0"
|
|
52
|
+
type="matrix"
|
|
53
|
+
in="shadowBlurOuter2"
|
|
54
|
+
result="shadowMatrixOuter2"
|
|
55
|
+
></feColorMatrix>
|
|
56
|
+
<feMerge>
|
|
57
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
58
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
59
|
+
</feMerge>
|
|
60
|
+
</filter>
|
|
61
|
+
</defs>
|
|
62
|
+
<g
|
|
63
|
+
id="PropertyPersonal"
|
|
64
|
+
stroke="none"
|
|
65
|
+
strokeWidth="1"
|
|
66
|
+
fill="none"
|
|
67
|
+
fillRule="evenodd"
|
|
68
|
+
>
|
|
69
|
+
<g id="PropertyPersonalIcon" transform="translate(7.000000, 5.000000)">
|
|
70
|
+
<g id="Oval">
|
|
71
|
+
<use
|
|
72
|
+
fill="black"
|
|
73
|
+
fillOpacity="1"
|
|
74
|
+
filter="url(#property-personal-filter-2)"
|
|
75
|
+
xlinkHref="#property-personal-path-1"
|
|
76
|
+
></use>
|
|
77
|
+
<use
|
|
78
|
+
fill="#FFFFFF"
|
|
79
|
+
fillRule="evenodd"
|
|
80
|
+
xlinkHref="#property-personal-path-1"
|
|
81
|
+
></use>
|
|
82
|
+
</g>
|
|
83
|
+
<path
|
|
84
|
+
d="M49.7499195,37.0000215 C49.9582521,37.0000215 50.1249186,36.9166886 50.2499183,36.7500221 L50.2499183,36.7500221 L51.8124146,34.8125267 C51.9374143,34.6458601 51.9894972,34.4583605 51.9686642,34.250028 C51.9478313,34.0416955 51.8749145,33.8750289 51.7499148,33.7500292 L51.7499148,33.7500292 L46.4999273,29.4375395 L46.4999273,20.7500602 C46.4999273,20.5417277 46.4270105,20.3646441 46.2811778,20.2188115 C46.1353451,20.0729788 45.9582616,20.000062 45.7499291,20.000062 L45.7499291,20.000062 L42.2499374,20.000062 C42.0416049,20.000062 41.8645213,20.0729788 41.7186887,20.2188115 C41.572856,20.3646441 41.4999392,20.5417277 41.4999392,20.7500602 L41.4999392,20.7500602 L41.4999392,25.3125493 L35.9374525,20.6875603 C35.3541208,20.2292284 34.7082884,20.000062 33.9999571,20.000062 C33.2916258,20.000062 32.6666272,20.2292284 32.1249616,20.6875603 L32.1249616,20.6875603 L16.2499994,33.7500292 C16.1249997,33.8750289 16.0520829,34.0416955 16.0312499,34.250028 C16.010417,34.4583605 16.0624999,34.6458601 16.1874996,34.8125267 L16.1874996,34.8125267 L17.7499958,36.7500221 C17.8749955,36.9166886 18.0416621,37.0000215 18.2499946,37.0000215 C18.4583272,37.0000215 18.6458267,36.9375216 18.8124933,36.8125219 L18.8124933,36.8125219 L33.4999583,24.7500507 C33.6666249,24.625051 33.8332905,24.5625511 33.9999571,24.5625511 C34.1666237,24.5625511 34.3332893,24.625051 34.4999559,24.7500507 L34.4999559,24.7500507 L49.1874209,36.8125219 C49.3540875,36.9375216 49.541587,37.0000215 49.7499195,37.0000215 Z M30.249966,47.9999952 C30.4582985,47.9999952 30.6353821,47.9270784 30.7812148,47.7812458 C30.9270474,47.6354131 30.9999642,47.4583295 30.9999642,47.249997 L30.9999642,47.249997 L30.9999642,40.2500137 C30.9999642,40.0416812 31.072881,39.8645976 31.2187137,39.718765 C31.3645464,39.5729323 31.5416299,39.5000155 31.7499624,39.5000155 L31.7499624,39.5000155 L36.2499517,39.5000155 C36.4582842,39.5000155 36.6353678,39.5729323 36.7812005,39.718765 C36.9270331,39.8645976 36.9999499,40.0416812 36.9999499,40.2500137 L36.9999499,40.2500137 L36.9999499,47.249997 C36.9999499,47.4583295 37.0728667,47.6354131 37.2186994,47.7812458 C37.3645321,47.9270784 37.5416156,47.9999952 37.7499481,47.9999952 L37.7499481,47.9999952 L44.9999309,47.9999952 C45.4165968,47.9999952 45.770762,47.8541626 46.0624283,47.5624963 C46.3540946,47.27083 46.4999273,46.9166648 46.4999273,46.4999988 L46.4999273,46.4999988 L46.4999273,37.5625201 C46.4999273,37.3125207 46.4165945,37.1041882 46.2499279,36.9375216 L46.2499279,36.9375216 L34.4999559,27.3125446 C34.3332893,27.1875449 34.1666237,27.125045 33.9999571,27.125045 C33.8332905,27.125045 33.6666249,27.1875449 33.4999583,27.3125446 L33.4999583,27.3125446 L21.7499863,36.9375216 C21.5833197,37.1041882 21.4999869,37.3125207 21.4999869,37.5625201 L21.4999869,37.5625201 L21.4999869,46.4999988 C21.4999869,46.9166648 21.6458196,47.27083 21.9374858,47.5624963 C22.2291521,47.8541626 22.5833173,47.9999952 22.9999869,47.9999952 L22.9999869,47.9999952 L30.249966,47.9999952 Z"
|
|
85
|
+
id="h"
|
|
86
|
+
fill="#292A33"
|
|
87
|
+
fillRule="nonzero"
|
|
88
|
+
></path>
|
|
89
|
+
</g>
|
|
90
|
+
</g>
|
|
91
|
+
</svg>
|
|
92
|
+
);
|
|
93
|
+
|
|
94
|
+
export default PropertyPersonalIcon;
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
const PropertyStorefrontIcon = () => (
|
|
4
|
+
<svg
|
|
5
|
+
width="81px"
|
|
6
|
+
height="81px"
|
|
7
|
+
viewBox="0 0 81 81"
|
|
8
|
+
version="1.1"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
|
+
>
|
|
12
|
+
<title>Profile Obligation Icon / Property - Storefront</title>
|
|
13
|
+
<defs>
|
|
14
|
+
<circle id="storefront-path-1" cx="33.5" cy="33.5" r="33.5"></circle>
|
|
15
|
+
<filter
|
|
16
|
+
x="-17.2%"
|
|
17
|
+
y="-14.2%"
|
|
18
|
+
width="134.3%"
|
|
19
|
+
height="134.3%"
|
|
20
|
+
filterUnits="objectBoundingBox"
|
|
21
|
+
id="storefront-filter-2"
|
|
22
|
+
>
|
|
23
|
+
<feOffset
|
|
24
|
+
dx="0"
|
|
25
|
+
dy="-4"
|
|
26
|
+
in="SourceAlpha"
|
|
27
|
+
result="shadowOffsetOuter1"
|
|
28
|
+
></feOffset>
|
|
29
|
+
<feColorMatrix
|
|
30
|
+
values="0 0 0 0 0.964705882 0 0 0 0 0.964705882 0 0 0 0 0.976470588 0 0 0 1 0"
|
|
31
|
+
type="matrix"
|
|
32
|
+
in="shadowOffsetOuter1"
|
|
33
|
+
result="shadowMatrixOuter1"
|
|
34
|
+
></feColorMatrix>
|
|
35
|
+
<feOffset
|
|
36
|
+
dx="0"
|
|
37
|
+
dy="2"
|
|
38
|
+
in="SourceAlpha"
|
|
39
|
+
result="shadowOffsetOuter2"
|
|
40
|
+
></feOffset>
|
|
41
|
+
<feGaussianBlur
|
|
42
|
+
stdDeviation="3.5"
|
|
43
|
+
in="shadowOffsetOuter2"
|
|
44
|
+
result="shadowBlurOuter2"
|
|
45
|
+
></feGaussianBlur>
|
|
46
|
+
<feColorMatrix
|
|
47
|
+
values="0 0 0 0 0.161570617 0 0 0 0 0.163300979 0 0 0 0 0.199501812 0 0 0 0.3 0"
|
|
48
|
+
type="matrix"
|
|
49
|
+
in="shadowBlurOuter2"
|
|
50
|
+
result="shadowMatrixOuter2"
|
|
51
|
+
></feColorMatrix>
|
|
52
|
+
<feMerge>
|
|
53
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
54
|
+
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
|
55
|
+
</feMerge>
|
|
56
|
+
</filter>
|
|
57
|
+
</defs>
|
|
58
|
+
<g
|
|
59
|
+
id="storefront-Profile-/-Icons"
|
|
60
|
+
stroke="none"
|
|
61
|
+
strokeWidth="1"
|
|
62
|
+
fill="none"
|
|
63
|
+
fillRule="evenodd"
|
|
64
|
+
>
|
|
65
|
+
<g id="Outlined" transform="translate(7.000000, -341.000000)">
|
|
66
|
+
<g
|
|
67
|
+
id="Potentail-future-property"
|
|
68
|
+
transform="translate(0.000000, 231.000000)"
|
|
69
|
+
>
|
|
70
|
+
<g
|
|
71
|
+
id="storefront-Profile-Obligation-Icon-/-Property---Storefront"
|
|
72
|
+
transform="translate(0.000000, 115.000000)"
|
|
73
|
+
>
|
|
74
|
+
<g id="Oval-Copy-4">
|
|
75
|
+
<use
|
|
76
|
+
fill="black"
|
|
77
|
+
fillOpacity="1"
|
|
78
|
+
filter="url(#storefront-filter-2)"
|
|
79
|
+
xlinkHref="#storefront-path-1"
|
|
80
|
+
></use>
|
|
81
|
+
<use
|
|
82
|
+
fill="#FFFFFF"
|
|
83
|
+
fillRule="evenodd"
|
|
84
|
+
xlinkHref="#storefront-path-1"
|
|
85
|
+
></use>
|
|
86
|
+
</g>
|
|
87
|
+
<path
|
|
88
|
+
d="M51.9999094,30.0000381 C52.4999082,30.0000381 52.9374072,29.8333716 53.3124063,29.5000393 C53.6874054,29.1667071 53.9061549,28.7604581 53.9686547,28.2812922 C54.0311546,27.8021264 53.9374048,27.3333775 53.6874054,26.8750456 L53.6874054,26.8750456 L48.3124182,18.8750647 C47.9374191,18.291733 47.3957534,18.0000668 46.6874221,18.0000668 L46.6874221,18.0000668 L21.3124826,18.0000668 C20.6041512,18.0000668 20.0624855,18.291733 19.6874864,18.8750647 L19.6874864,18.8750647 L14.3749991,26.8750456 C14.0833328,27.3333775 13.9687501,27.8021264 14.0312499,28.2812922 C14.0937498,28.7604581 14.3124993,29.1667071 14.6874984,29.5000393 C15.0624975,29.8333716 15.4999964,30.0000381 15.9999952,30.0000381 L15.9999952,30.0000381 L51.9999094,30.0000381 Z M35.9999475,49.9999905 C36.5416132,49.9999905 37.0103621,49.802074 37.4061942,49.4062419 C37.8020263,49.0104098 37.9999428,48.5416609 37.9999428,47.9999952 L37.9999428,47.9999952 L37.9999428,32.0000334 L33.9999523,32.0000334 L33.9999523,42.0000095 L21.9999905,42.0000095 L21.9999905,32.0000334 L17.9999905,32.0000334 L17.9999905,47.9999952 C17.9999905,48.5416609 18.197907,49.0104098 18.593739,49.4062419 C18.9895711,49.802074 19.45832,49.9999905 19.9999905,49.9999905 L19.9999905,49.9999905 L35.9999475,49.9999905 Z M48.9999237,49.9999905 C49.2915828,49.9999905 49.5311653,49.9062407 49.7186648,49.7187411 C49.9061644,49.5312416 49.9999237,49.2916591 49.9999237,48.9999928 L49.9999237,48.9999928 L49.9999237,32.0000334 L45.9999237,32.0000334 L45.9999237,48.9999928 C45.9999237,49.2916591 46.0936735,49.5312416 46.281173,49.7187411 C46.4686726,49.9062407 46.708255,49.9999905 46.9999237,49.9999905 L46.9999237,49.9999905 L48.9999237,49.9999905 Z"
|
|
89
|
+
id="s"
|
|
90
|
+
fill="#292A33"
|
|
91
|
+
fillRule="nonzero"
|
|
92
|
+
></path>
|
|
93
|
+
</g>
|
|
94
|
+
</g>
|
|
95
|
+
</g>
|
|
96
|
+
</g>
|
|
97
|
+
</svg>
|
|
98
|
+
);
|
|
99
|
+
|
|
100
|
+
export default PropertyStorefrontIcon;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import AccountBillIcon from "./AccountBillIcon";
|
|
2
|
+
import AccountGenericIcon from "./AccountGenericIcon";
|
|
3
|
+
import AccountConstructionIcon from "./AccountConstructionIcon";
|
|
4
|
+
import AccountDentalIcon from "./AccountDentalIcon";
|
|
5
|
+
import AccountElectricIcon from "./AccountElectricIcon";
|
|
6
|
+
import AccountGarbageIcon from "./AccountGarbageIcon";
|
|
7
|
+
import AccountGasIcon from "./AccountGasIcon";
|
|
8
|
+
import AccountMedicalIcon from "./AccountMedicalIcon";
|
|
9
|
+
import AccountWaterIcon from "./AccountWaterIcon";
|
|
10
|
+
import PropertyApartmentIcon from "./PropertyApartmentIcon";
|
|
11
|
+
import PropertyBusinessIcon from "./PropertyBusinessIcon";
|
|
12
|
+
import PropertyCarIcon from "./PropertyCarIcon";
|
|
13
|
+
import PropertyCommercialVehicleIcon from "./PropertyCommercialVehicleIcon";
|
|
14
|
+
import PropertyGarageIcon from "./PropertyGarageIcon";
|
|
15
|
+
import PropertyLandIcon from "./PropertyLandIcon";
|
|
16
|
+
import PropertyMotorcycleIcon from "./PropertyMotorcycleIcon";
|
|
17
|
+
import PropertyStorefrontIcon from "./PropertyStorefrontIcon";
|
|
18
|
+
import PropertyPersonalIcon from "./PropertyPersonalIcon";
|
|
19
|
+
|
|
20
|
+
const ACCOUNTS_GENERIC_ICON = "ACCOUNTS_GENERIC";
|
|
21
|
+
const ACCOUNTS_CONSTRUCTION_ICON = "ACCOUNTS_CONSTRUCTION";
|
|
22
|
+
const ACCOUNTS_HEALTH_ICON = "ACCOUNTS_HEALTH";
|
|
23
|
+
const ACCOUNTS_DENTAL_ICON = "ACCOUNTS_DENTAL";
|
|
24
|
+
const ACCOUNTS_UTILITY_ELECTRIC_ICON = "ACCOUNTS_UTILITY_ELECTRIC";
|
|
25
|
+
const ACCOUNTS_UTILITY_GAS_ICON = "ACCOUNTS_UTILITY_GAS";
|
|
26
|
+
const ACCOUNTS_UTILITY_GARBAGE_ICON = "ACCOUNTS_UTILITY_GARBAGE";
|
|
27
|
+
const ACCOUNTS_UTILITY_WATER_ICON = "ACCOUNTS_UTILITY_WATER";
|
|
28
|
+
|
|
29
|
+
const PROPERTIES_PERSONAL_ICON = "PROPERTIES_PERSONAL";
|
|
30
|
+
const PROPERTIES_GARAGE_ICON = "PROPERTIES_GARAGE";
|
|
31
|
+
const PROPERTIES_BUSINESS_ICON = "PROPERTIES_BUSINESS";
|
|
32
|
+
const PROPERTIES_STOREFRONT_ICON = "PROPERTIES_STOREFRONT";
|
|
33
|
+
const PROPERTIES_APARTMENT_ICON = "PROPERTIES_APARTMENT";
|
|
34
|
+
const PROPERTIES_LAND_ICON = "PROPERTIES_LAND";
|
|
35
|
+
const PROPERTIES_CAR_ICON = "PROPERTIES_CAR";
|
|
36
|
+
const PROPERTIES_MOTORCYCLE_ICON = "PROPERTIES_MOTORCYCLE";
|
|
37
|
+
const PROPERTIES_COMMERCIAL_AUTO_ICON = "PROPERTIES_COMMERCIAL_AUTO";
|
|
38
|
+
|
|
39
|
+
const MISC_BILL_ICON = "MISC_SINGLE_BILL";
|
|
40
|
+
|
|
41
|
+
export const iconsMap = {
|
|
42
|
+
[ACCOUNTS_GENERIC_ICON]: AccountGenericIcon,
|
|
43
|
+
[ACCOUNTS_CONSTRUCTION_ICON]: AccountConstructionIcon,
|
|
44
|
+
[ACCOUNTS_HEALTH_ICON]: AccountMedicalIcon,
|
|
45
|
+
[ACCOUNTS_DENTAL_ICON]: AccountDentalIcon,
|
|
46
|
+
[ACCOUNTS_UTILITY_ELECTRIC_ICON]: AccountElectricIcon,
|
|
47
|
+
[ACCOUNTS_UTILITY_GARBAGE_ICON]: AccountGarbageIcon,
|
|
48
|
+
[ACCOUNTS_UTILITY_GAS_ICON]: AccountGasIcon,
|
|
49
|
+
[ACCOUNTS_UTILITY_WATER_ICON]: AccountWaterIcon,
|
|
50
|
+
[PROPERTIES_PERSONAL_ICON]: PropertyPersonalIcon,
|
|
51
|
+
[PROPERTIES_GARAGE_ICON]: PropertyGarageIcon,
|
|
52
|
+
[PROPERTIES_BUSINESS_ICON]: PropertyBusinessIcon,
|
|
53
|
+
[PROPERTIES_STOREFRONT_ICON]: PropertyStorefrontIcon,
|
|
54
|
+
[PROPERTIES_APARTMENT_ICON]: PropertyApartmentIcon,
|
|
55
|
+
[PROPERTIES_LAND_ICON]: PropertyLandIcon,
|
|
56
|
+
[PROPERTIES_CAR_ICON]: PropertyCarIcon,
|
|
57
|
+
[PROPERTIES_MOTORCYCLE_ICON]: PropertyMotorcycleIcon,
|
|
58
|
+
[PROPERTIES_COMMERCIAL_AUTO_ICON]: PropertyCommercialVehicleIcon,
|
|
59
|
+
[MISC_BILL_ICON]: AccountBillIcon
|
|
60
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Text from "../../../atoms/text";
|
|
3
|
+
import AmountCallout from "../../../atoms/amount-callout";
|
|
4
|
+
import { Box, Stack } from "../../../atoms/layouts";
|
|
5
|
+
import {
|
|
6
|
+
FONT_WEIGHT_SEMIBOLD,
|
|
7
|
+
FONT_WEIGHT_REGULAR
|
|
8
|
+
} from "../../../../constants/style_constants";
|
|
9
|
+
import { REGENT_GREY } from "../../../../constants/colors";
|
|
10
|
+
import { displayCurrency } from "../../../../util/general";
|
|
11
|
+
|
|
12
|
+
const AmountModule = ({ totalAmountDue, autoPayEnabled, isMobile }) => (
|
|
13
|
+
<Box padding="0 0.25rem 0 0">
|
|
14
|
+
<Stack childGap="0">
|
|
15
|
+
<Text variant="pS" weight={FONT_WEIGHT_SEMIBOLD}>
|
|
16
|
+
{isMobile ? "Total Due" : "Total Amount Due"}
|
|
17
|
+
</Text>
|
|
18
|
+
<AmountCallout
|
|
19
|
+
amount={displayCurrency(totalAmountDue)}
|
|
20
|
+
textAlign="right"
|
|
21
|
+
/>
|
|
22
|
+
{autoPayEnabled && (
|
|
23
|
+
<Text
|
|
24
|
+
variant="p"
|
|
25
|
+
weight={FONT_WEIGHT_REGULAR}
|
|
26
|
+
color={REGENT_GREY}
|
|
27
|
+
extraStyles={`font-style: italic`}
|
|
28
|
+
>
|
|
29
|
+
{isMobile ? "Autopay On" : "Autopay Enabled"}
|
|
30
|
+
</Text>
|
|
31
|
+
)}
|
|
32
|
+
</Stack>
|
|
33
|
+
</Box>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export default AmountModule;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { iconsMap } from "../icons";
|
|
3
|
+
import { Box, Cluster } from "../../../atoms/layouts";
|
|
4
|
+
|
|
5
|
+
const IconsModule = ({
|
|
6
|
+
icon,
|
|
7
|
+
iconDefault,
|
|
8
|
+
configIconMap,
|
|
9
|
+
iconValue,
|
|
10
|
+
customAttributes
|
|
11
|
+
}) => {
|
|
12
|
+
let Icon;
|
|
13
|
+
if (typeof icon === "object") {
|
|
14
|
+
const iconID = customAttributes?.[iconValue];
|
|
15
|
+
const iconMapValue = configIconMap?.[iconID] ?? iconDefault;
|
|
16
|
+
Icon = iconsMap[iconMapValue];
|
|
17
|
+
} else {
|
|
18
|
+
Icon = iconsMap[icon];
|
|
19
|
+
}
|
|
20
|
+
return (
|
|
21
|
+
<Box padding="0 1rem 0 0">
|
|
22
|
+
<Cluster justify="center" align="center">
|
|
23
|
+
<Icon />
|
|
24
|
+
</Cluster>
|
|
25
|
+
</Box>
|
|
26
|
+
);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export default IconsModule;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import React, { useState } from "react";
|
|
2
|
+
import { Box, Cluster } from "../../../atoms/layouts";
|
|
3
|
+
import ButtonWithAction from "../../../atoms/button-with-action";
|
|
4
|
+
import { GHOST_GREY } from "../../../../constants/colors";
|
|
5
|
+
|
|
6
|
+
const PaymentDetailsActions = ({ isMobile, obligations, config, actions }) => {
|
|
7
|
+
const [isLoading, setIsLoading] = useState(false);
|
|
8
|
+
const { obligationSlug } = config;
|
|
9
|
+
const { createPaymentFromProfile, setDetailedObligation } = actions;
|
|
10
|
+
const detailsSlug =
|
|
11
|
+
config.type === "ACCOUNT"
|
|
12
|
+
? `/profile/accounts/details/${obligationSlug}`
|
|
13
|
+
: `/profile/properties/details/${obligationSlug}`;
|
|
14
|
+
const handleClick = obligations => {
|
|
15
|
+
setIsLoading(true);
|
|
16
|
+
createPaymentFromProfile(obligations, config);
|
|
17
|
+
};
|
|
18
|
+
const handleDetailsClick = () => {
|
|
19
|
+
setDetailedObligation(obligations, config, detailsSlug);
|
|
20
|
+
};
|
|
21
|
+
return (
|
|
22
|
+
<Box
|
|
23
|
+
padding="16px 0 0"
|
|
24
|
+
minWidth="100%"
|
|
25
|
+
borderSize="1px"
|
|
26
|
+
borderColor={GHOST_GREY}
|
|
27
|
+
borderWidthOverride="1px 0 0 0"
|
|
28
|
+
key={`${obligations[0].id}-actions`}
|
|
29
|
+
>
|
|
30
|
+
<Cluster
|
|
31
|
+
justify={isMobile ? "center" : "flex-end"}
|
|
32
|
+
align="center"
|
|
33
|
+
childGap="0"
|
|
34
|
+
>
|
|
35
|
+
<Box
|
|
36
|
+
padding={isMobile ? "0 8px 0 0" : "8px"}
|
|
37
|
+
extraStyles={isMobile && `flex-grow: 1;`}
|
|
38
|
+
>
|
|
39
|
+
<ButtonWithAction
|
|
40
|
+
variant={isMobile ? "smallSecondary" : "secondary"}
|
|
41
|
+
text={
|
|
42
|
+
config.type === "ACCOUNT" ? "Account Details" : "Property Details"
|
|
43
|
+
}
|
|
44
|
+
action={handleDetailsClick}
|
|
45
|
+
dataQa="Account Details"
|
|
46
|
+
extraStyles={isMobile && `flex-grow: 1; width: 100%;`}
|
|
47
|
+
/>
|
|
48
|
+
</Box>
|
|
49
|
+
<Box
|
|
50
|
+
padding={isMobile ? "0 0 0 8px" : "8px"}
|
|
51
|
+
extraStyles={isMobile && `flex-grow: 1;`}
|
|
52
|
+
>
|
|
53
|
+
<ButtonWithAction
|
|
54
|
+
isLoading={isLoading}
|
|
55
|
+
action={() => handleClick(obligations)}
|
|
56
|
+
text="Make Payment"
|
|
57
|
+
variant={isMobile ? "smallPrimary" : "primary"}
|
|
58
|
+
dataQa="Make Payment"
|
|
59
|
+
extraStyles={isMobile && `flex-grow: 1; width: 100%;`}
|
|
60
|
+
/>
|
|
61
|
+
</Box>
|
|
62
|
+
</Cluster>
|
|
63
|
+
</Box>
|
|
64
|
+
);
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export default PaymentDetailsActions;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Box, Stack } from "../../../atoms/layouts";
|
|
3
|
+
import Heading from "../../../atoms/heading";
|
|
4
|
+
import Text from "../../../atoms/text";
|
|
5
|
+
import { FONT_WEIGHT_SEMIBOLD } from "../../../../constants/style_constants";
|
|
6
|
+
|
|
7
|
+
const TitleModule = ({ title, subtitle, titleColor, subtitleColor }) => (
|
|
8
|
+
<Box padding="0">
|
|
9
|
+
<Stack childGap="0">
|
|
10
|
+
<Heading
|
|
11
|
+
variant="h6"
|
|
12
|
+
weight={FONT_WEIGHT_SEMIBOLD}
|
|
13
|
+
color={titleColor}
|
|
14
|
+
aria-level="2"
|
|
15
|
+
>
|
|
16
|
+
{title}
|
|
17
|
+
</Heading>
|
|
18
|
+
<Text variant="pS" color={subtitleColor} aria-level="3">
|
|
19
|
+
{subtitle}
|
|
20
|
+
</Text>
|
|
21
|
+
</Stack>
|
|
22
|
+
</Box>
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export default TitleModule;
|