@itcase/ui-react-native 1.10.81
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/.storybook-react-native/index.ts +15 -0
- package/.storybook-react-native/main.ts +13 -0
- package/.storybook-react-native/preview.tsx +83 -0
- package/.storybook-react-native/tsconfig.json +5 -0
- package/.storybook-react-native-web/main.ts +49 -0
- package/.storybook-react-native-web/preview.tsx +104 -0
- package/.storybook-react-native-web/tsconfig.json +5 -0
- package/demoApp/.bundle/config +2 -0
- package/demoApp/.watchmanconfig +8 -0
- package/demoApp/App.tsx +61 -0
- package/demoApp/Gemfile +17 -0
- package/demoApp/README.md +97 -0
- package/demoApp/android/app/build.gradle +119 -0
- package/demoApp/android/app/debug.keystore +0 -0
- package/demoApp/android/app/proguard-rules.pro +10 -0
- package/demoApp/android/app/src/main/AndroidManifest.xml +27 -0
- package/demoApp/android/app/src/main/java/com/demoapp/MainActivity.kt +22 -0
- package/demoApp/android/app/src/main/java/com/demoapp/MainApplication.kt +27 -0
- package/demoApp/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/demoApp/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/demoApp/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/demoApp/android/app/src/main/res/values/strings.xml +3 -0
- package/demoApp/android/app/src/main/res/values/styles.xml +9 -0
- package/demoApp/android/build.gradle +21 -0
- package/demoApp/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/demoApp/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/demoApp/android/gradle.properties +49 -0
- package/demoApp/android/gradlew +251 -0
- package/demoApp/android/gradlew.bat +99 -0
- package/demoApp/android/settings.gradle +6 -0
- package/demoApp/app.json +4 -0
- package/demoApp/babel.config.js +7 -0
- package/demoApp/index.js +9 -0
- package/demoApp/ios/.xcode.env +11 -0
- package/demoApp/ios/Podfile +34 -0
- package/demoApp/ios/Podfile.lock +2445 -0
- package/demoApp/ios/demoApp/AppDelegate.swift +48 -0
- package/demoApp/ios/demoApp/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/demoApp/ios/demoApp/Images.xcassets/Contents.json +6 -0
- package/demoApp/ios/demoApp/Info.plist +60 -0
- package/demoApp/ios/demoApp/LaunchScreen.storyboard +47 -0
- package/demoApp/ios/demoApp/PrivacyInfo.xcprivacy +37 -0
- package/demoApp/ios/demoApp.xcodeproj/project.pbxproj +494 -0
- package/demoApp/ios/demoApp.xcodeproj/xcshareddata/xcschemes/demoApp.xcscheme +88 -0
- package/demoApp/ios/demoApp.xcworkspace/contents.xcworkspacedata +10 -0
- package/demoApp/metro-transformer.js +16 -0
- package/demoApp/metro.config.js +296 -0
- package/demoApp/package-lock.json +41233 -0
- package/demoApp/package.json +56 -0
- package/demoApp/tsconfig.json +8 -0
- package/package.json +58 -0
- package/postcss.config.mjs +1 -0
- package/src/components/Avatar/Avatar.appearance.ts +14 -0
- package/src/components/Avatar/Avatar.interface.ts +99 -0
- package/src/components/Avatar/Avatar.styles.ts +11 -0
- package/src/components/Avatar/Avatar.tsx +181 -0
- package/src/components/Avatar/appearance/avatarShape.ts +24 -0
- package/src/components/Avatar/appearance/avatarSize.ts +66 -0
- package/src/components/Avatar/appearance/avatarStyle.ts +17 -0
- package/src/components/Avatar/appearance/avatarSurface.ts +42 -0
- package/src/components/Avatar/index.ts +36 -0
- package/src/components/Avatar/stories/AvatarCount.stories.tsx +35 -0
- package/src/components/Avatar/stories/AvatarImage.stories.tsx +36 -0
- package/src/components/Avatar/stories/AvatarInteraction.stories.tsx +25 -0
- package/src/components/Avatar/stories/AvatarLetters.stories.tsx +36 -0
- package/src/components/Avatar/stories/AvatarShape.stories.tsx +54 -0
- package/src/components/Avatar/stories/AvatarSize.stories.tsx +78 -0
- package/src/components/Avatar/stories/AvatarStories.config.ts +12 -0
- package/src/components/Avatar/stories/AvatarStyle.stories.tsx +42 -0
- package/src/components/Avatar/styles/avatar.ts +32 -0
- package/src/components/Avatar/styles/avatarShape.ts +34 -0
- package/src/components/Avatar/styles/avatarSize.ts +22 -0
- package/src/components/AvatarStack/AvatarStack.interface.ts +19 -0
- package/src/components/AvatarStack/AvatarStack.styles.ts +11 -0
- package/src/components/AvatarStack/AvatarStack.tsx +82 -0
- package/src/components/AvatarStack/index.ts +7 -0
- package/src/components/AvatarStack/stories/AvatarStack.stories.tsx +56 -0
- package/src/components/AvatarStack/styles/avatarStack.ts +17 -0
- package/src/components/AvatarStack/styles/avatarStackDirection.ts +22 -0
- package/src/components/AvatarStack/styles/avatarStackSize.ts +76 -0
- package/src/components/Badge/Badge.appearance.ts +14 -0
- package/src/components/Badge/Badge.interface.ts +50 -0
- package/src/components/Badge/Badge.styles.ts +13 -0
- package/src/components/Badge/Badge.tsx +93 -0
- package/src/components/Badge/appearance/badgeAccent.ts +10 -0
- package/src/components/Badge/appearance/badgeDanger.ts +10 -0
- package/src/components/Badge/appearance/badgeExtra.ts +10 -0
- package/src/components/Badge/appearance/badgeShape.ts +24 -0
- package/src/components/Badge/index.ts +34 -0
- package/src/components/Badge/stories/BadgeDefault.stories.tsx +39 -0
- package/src/components/Badge/stories/BadgeShape.stories.tsx +57 -0
- package/src/components/Badge/stories/BadgeSize.stories.tsx +33 -0
- package/src/components/Badge/stories/BadgeStatus.stories.tsx +23 -0
- package/src/components/Badge/styles/badge.ts +13 -0
- package/src/components/Badge/styles/badgeShape.ts +34 -0
- package/src/components/Badge/styles/badgeSize.ts +25 -0
- package/src/components/Badge/styles/badgeType.ts +20 -0
- package/src/components/Breadcrumbs/Breadcrumbs.appearance.ts +12 -0
- package/src/components/Breadcrumbs/Breadcrumbs.interface.ts +46 -0
- package/src/components/Breadcrumbs/Breadcrumbs.styles.ts +9 -0
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +94 -0
- package/src/components/Breadcrumbs/appearance/breadcrumbsAccent.ts +10 -0
- package/src/components/Breadcrumbs/appearance/breadcrumbsSize.ts +22 -0
- package/src/components/Breadcrumbs/appearance/breadcrumbsSurface.ts +22 -0
- package/src/components/Breadcrumbs/index.ts +26 -0
- package/src/components/Breadcrumbs/stories/Breadcrumbs.stories.tsx +35 -0
- package/src/components/Breadcrumbs/styles/breadcrumbs.ts +18 -0
- package/src/components/Breadcrumbs/styles/breadcrumbsSize.ts +28 -0
- package/src/components/Button/Button.appearance.ts +16 -0
- package/src/components/Button/Button.interface.ts +76 -0
- package/src/components/Button/Button.styles.ts +11 -0
- package/src/components/Button/Button.tsx +147 -0
- package/src/components/Button/appearance/buttonAccent.ts +24 -0
- package/src/components/Button/appearance/buttonDanger.ts +14 -0
- package/src/components/Button/appearance/buttonExtra.ts +14 -0
- package/src/components/Button/appearance/buttonStyle.ts +17 -0
- package/src/components/Button/appearance/buttonSurface.ts +30 -0
- package/src/components/Button/index.ts +30 -0
- package/src/components/Button/stories/ButtonDefault.stories.tsx +77 -0
- package/src/components/Button/stories/ButtonDisabled.stories.tsx +23 -0
- package/src/components/Button/stories/ButtonSize.stories.tsx +63 -0
- package/src/components/Button/stories/ButtonStories.config.ts +46 -0
- package/src/components/Button/stories/ButtonStyle.stories.tsx +47 -0
- package/src/components/Button/styles/button.ts +26 -0
- package/src/components/Button/styles/buttonSize.ts +42 -0
- package/src/components/Button/styles/buttonText.ts +28 -0
- package/src/components/Cell/Cell.interface.ts +45 -0
- package/src/components/Cell/Cell.styles.ts +13 -0
- package/src/components/Cell/Cell.tsx +96 -0
- package/src/components/Cell/index.ts +17 -0
- package/src/components/Cell/stories/Cell.stories.tsx +35 -0
- package/src/components/Cell/styles/cell.ts +9 -0
- package/src/components/Cell/styles/cellDirection.ts +24 -0
- package/src/components/Cell/styles/cellShape.ts +16 -0
- package/src/components/Cell/styles/cellSize.ts +21 -0
- package/src/components/Checkbox/Checkbox.appearance.ts +22 -0
- package/src/components/Checkbox/Checkbox.interface.ts +99 -0
- package/src/components/Checkbox/Checkbox.styles.ts +13 -0
- package/src/components/Checkbox/Checkbox.tsx +193 -0
- package/src/components/Checkbox/appearance/checkboxDefault.ts +42 -0
- package/src/components/Checkbox/appearance/checkboxDisabled.ts +15 -0
- package/src/components/Checkbox/appearance/checkboxError.ts +15 -0
- package/src/components/Checkbox/appearance/checkboxRequire.ts +15 -0
- package/src/components/Checkbox/appearance/checkboxShape.ts +12 -0
- package/src/components/Checkbox/appearance/checkboxSize.ts +26 -0
- package/src/components/Checkbox/appearance/checkboxStyle.ts +22 -0
- package/src/components/Checkbox/appearance/checkboxSuccess.ts +15 -0
- package/src/components/Checkbox/index.ts +36 -0
- package/src/components/Checkbox/stories/Checkbox.stories.tsx +31 -0
- package/src/components/Checkbox/stories/CheckboxDisabled.stories.tsx +18 -0
- package/src/components/Checkbox/stories/CheckboxError.stories.tsx +53 -0
- package/src/components/Checkbox/stories/CheckboxLabel.stories.tsx +32 -0
- package/src/components/Checkbox/stories/CheckboxLabelDesc.stories.tsx +33 -0
- package/src/components/Checkbox/stories/CheckboxShape.stories.tsx +29 -0
- package/src/components/Checkbox/stories/CheckboxSize.stories.tsx +40 -0
- package/src/components/Checkbox/stories/CheckboxStories.config.tsx +26 -0
- package/src/components/Checkbox/styles/checkbox.ts +35 -0
- package/src/components/Checkbox/styles/checkboxAlign.ts +23 -0
- package/src/components/Checkbox/styles/checkboxShape.ts +37 -0
- package/src/components/Checkbox/styles/checkboxSize.ts +60 -0
- package/src/components/Checkmark/Checkmark.interface.ts +8 -0
- package/src/components/Checkmark/Checkmark.styles.ts +7 -0
- package/src/components/Checkmark/Checkmark.tsx +38 -0
- package/src/components/Checkmark/index.ts +5 -0
- package/src/components/Checkmark/stories/Checkmark.stories.tsx +22 -0
- package/src/components/Checkmark/styles/checkmark.ts +17 -0
- package/src/components/Chips/Chips.appearance.ts +32 -0
- package/src/components/Chips/Chips.interface.ts +103 -0
- package/src/components/Chips/Chips.styles.ts +11 -0
- package/src/components/Chips/Chips.tsx +187 -0
- package/src/components/Chips/appearance/chipsAccent.ts +24 -0
- package/src/components/Chips/appearance/chipsDanger.ts +20 -0
- package/src/components/Chips/appearance/chipsDisabled.ts +14 -0
- package/src/components/Chips/appearance/chipsError.ts +20 -0
- package/src/components/Chips/appearance/chipsExtra.ts +20 -0
- package/src/components/Chips/appearance/chipsInfo.ts +20 -0
- package/src/components/Chips/appearance/chipsShape.ts +24 -0
- package/src/components/Chips/appearance/chipsSize.ts +48 -0
- package/src/components/Chips/appearance/chipsSpecial.ts +20 -0
- package/src/components/Chips/appearance/chipsStyle.ts +17 -0
- package/src/components/Chips/appearance/chipsSuccess.ts +20 -0
- package/src/components/Chips/appearance/chipsSurface.ts +40 -0
- package/src/components/Chips/appearance/chipsWarning.ts +20 -0
- package/src/components/Chips/index.ts +30 -0
- package/src/components/Chips/stories/ChipsCheckLeft.stories.tsx +38 -0
- package/src/components/Chips/stories/ChipsCheckRight.stories.tsx +38 -0
- package/src/components/Chips/stories/ChipsClear.stories.tsx +38 -0
- package/src/components/Chips/stories/ChipsDefault.stories.tsx +90 -0
- package/src/components/Chips/stories/ChipsShape.stories.tsx +51 -0
- package/src/components/Chips/stories/ChipsSize.stories.tsx +57 -0
- package/src/components/Chips/stories/ChipsStyle.stories.tsx +39 -0
- package/src/components/Chips/styles/chips.ts +15 -0
- package/src/components/Chips/styles/chipsShape.ts +34 -0
- package/src/components/Chips/styles/chipsSize.ts +65 -0
- package/src/components/Choice/Choice.appearance.ts +22 -0
- package/src/components/Choice/Choice.interface.ts +119 -0
- package/src/components/Choice/Choice.styles.ts +13 -0
- package/src/components/Choice/Choice.tsx +258 -0
- package/src/components/Choice/appearance/choiceDefault.ts +34 -0
- package/src/components/Choice/appearance/choiceDisabled.ts +19 -0
- package/src/components/Choice/appearance/choiceError.ts +19 -0
- package/src/components/Choice/appearance/choiceRequire.ts +20 -0
- package/src/components/Choice/appearance/choiceShape.ts +24 -0
- package/src/components/Choice/appearance/choiceSize.ts +21 -0
- package/src/components/Choice/appearance/choiceStyle.ts +17 -0
- package/src/components/Choice/appearance/choiceSuccess.ts +20 -0
- package/src/components/Choice/index.ts +31 -0
- package/src/components/Choice/stories/ChoiceIcon.stories.tsx +50 -0
- package/src/components/Choice/stories/ChoiceLabel.stories.tsx +50 -0
- package/src/components/Choice/stories/ChoiceLabelIcon.stories.tsx +50 -0
- package/src/components/Choice/stories/ChoiceSize.stories.tsx +40 -0
- package/src/components/Choice/stories/ChoiceStories.config.tsx +77 -0
- package/src/components/Choice/stories/ChoiceStyle.stories.tsx +46 -0
- package/src/components/Choice/styles/choice.ts +45 -0
- package/src/components/Choice/styles/choiceShape.ts +34 -0
- package/src/components/Choice/styles/choiceSize.ts +58 -0
- package/src/components/Choice/styles/choiceWrap.ts +19 -0
- package/src/components/Code/Code.appearance.ts +20 -0
- package/src/components/Code/Code.interface.ts +43 -0
- package/src/components/Code/Code.styles.ts +11 -0
- package/src/components/Code/Code.tsx +75 -0
- package/src/components/Code/appearance/codeDefault.ts +11 -0
- package/src/components/Code/appearance/codeDisabled.ts +11 -0
- package/src/components/Code/appearance/codeError.ts +11 -0
- package/src/components/Code/appearance/codeShape.ts +15 -0
- package/src/components/Code/appearance/codeSize.ts +18 -0
- package/src/components/Code/appearance/codeStyle.ts +16 -0
- package/src/components/Code/appearance/codeSuccess.ts +11 -0
- package/src/components/Code/index.ts +22 -0
- package/src/components/Code/stories/Code.stories.tsx +41 -0
- package/src/components/Code/styles/code.ts +16 -0
- package/src/components/Code/styles/codeSize.ts +25 -0
- package/src/components/Code/styles/codeVariant.ts +19 -0
- package/src/components/ColorInput/ColorInput.appearance.ts +22 -0
- package/src/components/ColorInput/ColorInput.helpers.ts +7 -0
- package/src/components/ColorInput/ColorInput.interface.ts +48 -0
- package/src/components/ColorInput/ColorInput.styles.ts +9 -0
- package/src/components/ColorInput/ColorInput.tsx +105 -0
- package/src/components/ColorInput/appearance/colorInputDefault.ts +22 -0
- package/src/components/ColorInput/appearance/colorInputDisabled.ts +21 -0
- package/src/components/ColorInput/appearance/colorInputError.ts +21 -0
- package/src/components/ColorInput/appearance/colorInputRequire.ts +21 -0
- package/src/components/ColorInput/appearance/colorInputShape.ts +15 -0
- package/src/components/ColorInput/appearance/colorInputSize.ts +22 -0
- package/src/components/ColorInput/appearance/colorInputStyle.ts +16 -0
- package/src/components/ColorInput/appearance/colorInputSuccess.ts +21 -0
- package/src/components/ColorInput/index.ts +26 -0
- package/src/components/ColorInput/stories/ColorInput.stories.tsx +36 -0
- package/src/components/ColorInput/styles/colorInput.ts +17 -0
- package/src/components/ColorInput/styles/colorInputSize.ts +58 -0
- package/src/components/DatePicker/DatePicker.appearance.ts +12 -0
- package/src/components/DatePicker/DatePicker.constants.ts +3 -0
- package/src/components/DatePicker/DatePicker.helpers.ts +28 -0
- package/src/components/DatePicker/DatePicker.interface.ts +68 -0
- package/src/components/DatePicker/DatePicker.styles.ts +7 -0
- package/src/components/DatePicker/DatePicker.tsx +189 -0
- package/src/components/DatePicker/appearance/datePickerSize.ts +24 -0
- package/src/components/DatePicker/appearance/datePickerStyle.ts +14 -0
- package/src/components/DatePicker/appearance/datePickerSurface.ts +15 -0
- package/src/components/DatePicker/index.ts +22 -0
- package/src/components/DatePicker/stories/DatePicker.stories.tsx +50 -0
- package/src/components/DatePicker/styles/datePicker.ts +45 -0
- package/src/components/Divider/Divider.appearance.ts +22 -0
- package/src/components/Divider/Divider.interface.ts +40 -0
- package/src/components/Divider/Divider.styles.ts +11 -0
- package/src/components/Divider/Divider.tsx +65 -0
- package/src/components/Divider/appearance/dividerAccent.ts +9 -0
- package/src/components/Divider/appearance/dividerError.ts +9 -0
- package/src/components/Divider/appearance/dividerExtra.ts +9 -0
- package/src/components/Divider/appearance/dividerSize.ts +15 -0
- package/src/components/Divider/appearance/dividerSpecial.ts +9 -0
- package/src/components/Divider/appearance/dividerSuccess.ts +9 -0
- package/src/components/Divider/appearance/dividerSurface.ts +18 -0
- package/src/components/Divider/appearance/dividerWarning.ts +9 -0
- package/src/components/Divider/index.ts +28 -0
- package/src/components/Divider/stories/DividerAppearance.stories.tsx +75 -0
- package/src/components/Divider/stories/DividerDirection.stories.tsx +34 -0
- package/src/components/Divider/stories/DividerSize.stories.tsx +33 -0
- package/src/components/Divider/styles/divider.ts +9 -0
- package/src/components/Divider/styles/dividerDirection.ts +25 -0
- package/src/components/Divider/styles/dividerSize.ts +32 -0
- package/src/components/Dot/Dot.interface.ts +18 -0
- package/src/components/Dot/Dot.styles.ts +11 -0
- package/src/components/Dot/Dot.tsx +33 -0
- package/src/components/Dot/index.ts +9 -0
- package/src/components/Dot/stories/Dot.stories.tsx +23 -0
- package/src/components/Dot/styles/dot.ts +9 -0
- package/src/components/Dot/styles/dotShape.ts +22 -0
- package/src/components/Dot/styles/dotSize.ts +25 -0
- package/src/components/Drawer/Drawer.appearance.ts +10 -0
- package/src/components/Drawer/Drawer.interface.ts +67 -0
- package/src/components/Drawer/Drawer.styles.ts +7 -0
- package/src/components/Drawer/Drawer.tsx +132 -0
- package/src/components/Drawer/appearance/drawerSize.ts +36 -0
- package/src/components/Drawer/appearance/drawerSurface.ts +12 -0
- package/src/components/Drawer/index.ts +22 -0
- package/src/components/Drawer/stories/Drawer.stories.tsx +71 -0
- package/src/components/Drawer/styles/drawer.ts +60 -0
- package/src/components/Dropdown/Dropdown.appearance.ts +16 -0
- package/src/components/Dropdown/Dropdown.interface.ts +152 -0
- package/src/components/Dropdown/Dropdown.styles.ts +9 -0
- package/src/components/Dropdown/Dropdown.tsx +134 -0
- package/src/components/Dropdown/DropdownItem.appearance.ts +16 -0
- package/src/components/Dropdown/DropdownItem.tsx +141 -0
- package/src/components/Dropdown/appearance/dropdownAccent.ts +17 -0
- package/src/components/Dropdown/appearance/dropdownShape.ts +24 -0
- package/src/components/Dropdown/appearance/dropdownSize.ts +21 -0
- package/src/components/Dropdown/appearance/dropdownStyle.ts +17 -0
- package/src/components/Dropdown/appearance/dropdownSurface.ts +25 -0
- package/src/components/Dropdown/index.ts +45 -0
- package/src/components/Dropdown/stories/Dropdown.stories.tsx +62 -0
- package/src/components/Dropdown/styles/dropdown.ts +31 -0
- package/src/components/Dropdown/styles/dropdownSize.ts +36 -0
- package/src/components/Group/Group.appearance.ts +8 -0
- package/src/components/Group/Group.interface.ts +53 -0
- package/src/components/Group/Group.styles.ts +15 -0
- package/src/components/Group/Group.tsx +80 -0
- package/src/components/Group/appearance/groupSurface.ts +10 -0
- package/src/components/Group/index.ts +36 -0
- package/src/components/Group/stories/Group.stories.tsx +39 -0
- package/src/components/Group/styles/group.ts +9 -0
- package/src/components/Group/styles/groupAlign.ts +37 -0
- package/src/components/Group/styles/groupDirection.ts +40 -0
- package/src/components/Group/styles/groupJustify.ts +40 -0
- package/src/components/Group/styles/groupWrap.ts +22 -0
- package/src/components/HeroTitle/HeroTitle.appearance.ts +8 -0
- package/src/components/HeroTitle/HeroTitle.interface.ts +51 -0
- package/src/components/HeroTitle/HeroTitle.styles.ts +7 -0
- package/src/components/HeroTitle/HeroTitle.tsx +78 -0
- package/src/components/HeroTitle/appearance/heroTitleSize.ts +24 -0
- package/src/components/HeroTitle/index.ts +16 -0
- package/src/components/HeroTitle/stories/HeroTitle.stories.tsx +22 -0
- package/src/components/HeroTitle/styles/heroTitle.ts +11 -0
- package/src/components/Icon/Icon.interface.ts +42 -0
- package/src/components/Icon/Icon.styles.ts +11 -0
- package/src/components/Icon/Icon.tsx +96 -0
- package/src/components/Icon/index.ts +9 -0
- package/src/components/Icon/stories/Icon.stories.tsx +45 -0
- package/src/components/Icon/styles/icon.ts +12 -0
- package/src/components/Icon/styles/iconShape.ts +19 -0
- package/src/components/Icon/styles/iconSize.ts +61 -0
- package/src/components/Image/Image.interface.ts +31 -0
- package/src/components/Image/Image.styles.ts +7 -0
- package/src/components/Image/Image.tsx +95 -0
- package/src/components/Image/index.ts +5 -0
- package/src/components/Image/stories/Image.stories.tsx +18 -0
- package/src/components/Image/styles/image.ts +17 -0
- package/src/components/Input/Input.appearance.ts +22 -0
- package/src/components/Input/Input.interface.ts +86 -0
- package/src/components/Input/Input.styles.ts +11 -0
- package/src/components/Input/Input.tsx +159 -0
- package/src/components/Input/appearance/inputDefault.ts +20 -0
- package/src/components/Input/appearance/inputDisabled.ts +17 -0
- package/src/components/Input/appearance/inputError.ts +19 -0
- package/src/components/Input/appearance/inputRequire.ts +19 -0
- package/src/components/Input/appearance/inputShape.ts +24 -0
- package/src/components/Input/appearance/inputSize.ts +22 -0
- package/src/components/Input/appearance/inputStyle.ts +17 -0
- package/src/components/Input/appearance/inputSuccess.ts +19 -0
- package/src/components/Input/index.ts +30 -0
- package/src/components/Input/stories/InputDefault.stories.tsx +31 -0
- package/src/components/Input/stories/InputDisabled.stories.tsx +34 -0
- package/src/components/Input/stories/InputError.stories.tsx +30 -0
- package/src/components/Input/stories/InputReadonly.stories.tsx +21 -0
- package/src/components/Input/stories/InputRequire.stories.tsx +30 -0
- package/src/components/Input/stories/InputShape.stories.tsx +52 -0
- package/src/components/Input/stories/InputSize.stories.tsx +40 -0
- package/src/components/Input/stories/InputStyle.stories.tsx +40 -0
- package/src/components/Input/stories/InputSuccess.stories.tsx +30 -0
- package/src/components/Input/styles/input.ts +26 -0
- package/src/components/Input/styles/inputShape.ts +31 -0
- package/src/components/Input/styles/inputSize.ts +33 -0
- package/src/components/InputNumber/InputNumber.appearance.ts +20 -0
- package/src/components/InputNumber/InputNumber.interface.ts +79 -0
- package/src/components/InputNumber/InputNumber.styles.ts +11 -0
- package/src/components/InputNumber/InputNumber.tsx +224 -0
- package/src/components/InputNumber/appearance/inputNumberDefault.ts +14 -0
- package/src/components/InputNumber/appearance/inputNumberError.ts +14 -0
- package/src/components/InputNumber/appearance/inputNumberRequire.ts +14 -0
- package/src/components/InputNumber/appearance/inputNumberShape.ts +24 -0
- package/src/components/InputNumber/appearance/inputNumberSize.ts +30 -0
- package/src/components/InputNumber/appearance/inputNumberStyle.ts +19 -0
- package/src/components/InputNumber/appearance/inputNumberSuccess.ts +14 -0
- package/src/components/InputNumber/index.ts +34 -0
- package/src/components/InputNumber/stories/InputNumber.stories.tsx +93 -0
- package/src/components/InputNumber/styles/inputNumber.ts +25 -0
- package/src/components/InputNumber/styles/inputNumberShape.ts +34 -0
- package/src/components/InputNumber/styles/inputNumberSize.ts +36 -0
- package/src/components/InputPassword/InputPassword.appearance.ts +22 -0
- package/src/components/InputPassword/InputPassword.interface.ts +90 -0
- package/src/components/InputPassword/InputPassword.styles.ts +11 -0
- package/src/components/InputPassword/InputPassword.tsx +202 -0
- package/src/components/InputPassword/appearance/inputPasswordDefault.ts +22 -0
- package/src/components/InputPassword/appearance/inputPasswordDisabled.ts +19 -0
- package/src/components/InputPassword/appearance/inputPasswordError.ts +19 -0
- package/src/components/InputPassword/appearance/inputPasswordRequire.ts +19 -0
- package/src/components/InputPassword/appearance/inputPasswordShape.ts +24 -0
- package/src/components/InputPassword/appearance/inputPasswordSize.ts +26 -0
- package/src/components/InputPassword/appearance/inputPasswordStyle.ts +19 -0
- package/src/components/InputPassword/appearance/inputPasswordSuccess.ts +19 -0
- package/src/components/InputPassword/index.ts +36 -0
- package/src/components/InputPassword/stories/InputPassword.stories.tsx +67 -0
- package/src/components/InputPassword/styles/inputPassword.ts +22 -0
- package/src/components/InputPassword/styles/inputPasswordShape.ts +34 -0
- package/src/components/InputPassword/styles/inputPasswordSize.ts +36 -0
- package/src/components/Label/Label.appearance.ts +20 -0
- package/src/components/Label/Label.interface.ts +59 -0
- package/src/components/Label/Label.styles.ts +11 -0
- package/src/components/Label/Label.tsx +126 -0
- package/src/components/Label/Label.web.tsx +124 -0
- package/src/components/Label/appearance/labelAccent.ts +10 -0
- package/src/components/Label/appearance/labelDanger.ts +10 -0
- package/src/components/Label/appearance/labelExtra.ts +10 -0
- package/src/components/Label/appearance/labelGradient.ts +10 -0
- package/src/components/Label/appearance/labelShape.ts +9 -0
- package/src/components/Label/appearance/labelSize.ts +13 -0
- package/src/components/Label/appearance/labelSurface.ts +22 -0
- package/src/components/Label/index.ts +24 -0
- package/src/components/Label/stories/LabelShape.stories.tsx +33 -0
- package/src/components/Label/stories/LabelSize.stories.tsx +57 -0
- package/src/components/Label/stories/LabelText.stories.tsx +45 -0
- package/src/components/Label/styles/label.ts +13 -0
- package/src/components/Label/styles/labelShape.ts +23 -0
- package/src/components/Label/styles/labelSize.ts +55 -0
- package/src/components/Link/Link.appearance.ts +16 -0
- package/src/components/Link/Link.interface.ts +54 -0
- package/src/components/Link/Link.styles.ts +7 -0
- package/src/components/Link/Link.tsx +119 -0
- package/src/components/Link/appearance/linkAccent.ts +12 -0
- package/src/components/Link/appearance/linkDanger.ts +9 -0
- package/src/components/Link/appearance/linkExtra.ts +9 -0
- package/src/components/Link/appearance/linkStyle.ts +14 -0
- package/src/components/Link/appearance/linkSurface.ts +12 -0
- package/src/components/Link/index.ts +18 -0
- package/src/components/Link/stories/Link.stories.tsx +23 -0
- package/src/components/Link/styles/link.ts +14 -0
- package/src/components/List/List.appearance.ts +28 -0
- package/src/components/List/List.context.ts +7 -0
- package/src/components/List/List.interface.ts +94 -0
- package/src/components/List/List.styles.ts +9 -0
- package/src/components/List/List.tsx +119 -0
- package/src/components/List/ListItem.tsx +68 -0
- package/src/components/List/appearance/listAccent.ts +10 -0
- package/src/components/List/appearance/listDanger.ts +9 -0
- package/src/components/List/appearance/listError.ts +9 -0
- package/src/components/List/appearance/listExtra.ts +9 -0
- package/src/components/List/appearance/listInfo.ts +14 -0
- package/src/components/List/appearance/listSize.ts +27 -0
- package/src/components/List/appearance/listSpecial.ts +9 -0
- package/src/components/List/appearance/listStyle.ts +19 -0
- package/src/components/List/appearance/listSuccess.ts +9 -0
- package/src/components/List/appearance/listSurface.ts +18 -0
- package/src/components/List/appearance/listWarning.ts +9 -0
- package/src/components/List/index.ts +42 -0
- package/src/components/List/stories/List.stories.tsx +48 -0
- package/src/components/List/styles/list.ts +22 -0
- package/src/components/List/styles/listDirection.ts +40 -0
- package/src/components/List/styles/listSize.ts +6 -0
- package/src/components/Loader/Loader.appearance.ts +30 -0
- package/src/components/Loader/Loader.interface.ts +75 -0
- package/src/components/Loader/Loader.styles.ts +11 -0
- package/src/components/Loader/Loader.tsx +135 -0
- package/src/components/Loader/appearance/loaderAccent.ts +16 -0
- package/src/components/Loader/appearance/loaderDanger.ts +11 -0
- package/src/components/Loader/appearance/loaderError.ts +11 -0
- package/src/components/Loader/appearance/loaderExtra.ts +11 -0
- package/src/components/Loader/appearance/loaderInfo.ts +11 -0
- package/src/components/Loader/appearance/loaderShape.ts +24 -0
- package/src/components/Loader/appearance/loaderSize.ts +18 -0
- package/src/components/Loader/appearance/loaderSpecial.ts +11 -0
- package/src/components/Loader/appearance/loaderStyle.ts +17 -0
- package/src/components/Loader/appearance/loaderSuccess.ts +11 -0
- package/src/components/Loader/appearance/loaderSurface.ts +26 -0
- package/src/components/Loader/appearance/loaderWarning.ts +11 -0
- package/src/components/Loader/index.ts +36 -0
- package/src/components/Loader/stories/LoaderDefault.stories.tsx +69 -0
- package/src/components/Loader/stories/LoaderShape.stories.tsx +51 -0
- package/src/components/Loader/stories/LoaderSize.stories.tsx +33 -0
- package/src/components/Loader/stories/LoaderStyle.stories.tsx +39 -0
- package/src/components/Loader/stories/LoaderText.stories.tsx +30 -0
- package/src/components/Loader/styles/loader.ts +14 -0
- package/src/components/Loader/styles/loaderShape.ts +34 -0
- package/src/components/Loader/styles/loaderSize.ts +28 -0
- package/src/components/Logo/Logo.interface.ts +16 -0
- package/src/components/Logo/Logo.styles.ts +11 -0
- package/src/components/Logo/Logo.tsx +53 -0
- package/src/components/Logo/index.ts +9 -0
- package/src/components/Logo/stories/Logo.stories.tsx +31 -0
- package/src/components/Logo/styles/logo.ts +13 -0
- package/src/components/Logo/styles/logoAlign.ts +28 -0
- package/src/components/Logo/styles/logoSize.ts +34 -0
- package/src/components/MenuItem/MenuItem.appearance.ts +18 -0
- package/src/components/MenuItem/MenuItem.interface.ts +100 -0
- package/src/components/MenuItem/MenuItem.styles.ts +13 -0
- package/src/components/MenuItem/MenuItem.tsx +173 -0
- package/src/components/MenuItem/appearance/menuItemAccent.ts +26 -0
- package/src/components/MenuItem/appearance/menuItemError.ts +19 -0
- package/src/components/MenuItem/appearance/menuItemShape.ts +24 -0
- package/src/components/MenuItem/appearance/menuItemSize.ts +48 -0
- package/src/components/MenuItem/appearance/menuItemStyle.ts +17 -0
- package/src/components/MenuItem/appearance/menuItemSurface.ts +38 -0
- package/src/components/MenuItem/index.ts +36 -0
- package/src/components/MenuItem/stories/MenuItem.stories.tsx +52 -0
- package/src/components/MenuItem/styles/menuItem.ts +25 -0
- package/src/components/MenuItem/styles/menuItemJustify.ts +18 -0
- package/src/components/MenuItem/styles/menuItemShape.ts +37 -0
- package/src/components/MenuItem/styles/menuItemSize.ts +65 -0
- package/src/components/Modal/Modal.interface.ts +35 -0
- package/src/components/Modal/Modal.styles.ts +7 -0
- package/src/components/Modal/Modal.tsx +73 -0
- package/src/components/Modal/index.ts +5 -0
- package/src/components/Modal/stories/Modal.stories.tsx +47 -0
- package/src/components/Modal/styles/modal.ts +36 -0
- package/src/components/Overlay/Overlay.appearance.ts +8 -0
- package/src/components/Overlay/Overlay.interface.ts +34 -0
- package/src/components/Overlay/Overlay.styles.ts +7 -0
- package/src/components/Overlay/Overlay.tsx +46 -0
- package/src/components/Overlay/appearance/overlayDefault.ts +12 -0
- package/src/components/Overlay/index.ts +16 -0
- package/src/components/Overlay/stories/Overlay.stories.tsx +24 -0
- package/src/components/Overlay/styles/overlay.ts +18 -0
- package/src/components/Pagination/Pagination.appearance.ts +12 -0
- package/src/components/Pagination/Pagination.interface.ts +46 -0
- package/src/components/Pagination/Pagination.styles.ts +9 -0
- package/src/components/Pagination/Pagination.tsx +107 -0
- package/src/components/Pagination/appearance/paginationAccent.ts +12 -0
- package/src/components/Pagination/appearance/paginationSize.ts +22 -0
- package/src/components/Pagination/appearance/paginationSurface.ts +12 -0
- package/src/components/Pagination/index.ts +24 -0
- package/src/components/Pagination/stories/Pagination.stories.tsx +37 -0
- package/src/components/Pagination/styles/pagination.ts +14 -0
- package/src/components/Pagination/styles/paginationSize.ts +46 -0
- package/src/components/Radio/Radio.appearance.ts +22 -0
- package/src/components/Radio/Radio.interface.ts +83 -0
- package/src/components/Radio/Radio.styles.ts +11 -0
- package/src/components/Radio/Radio.tsx +159 -0
- package/src/components/Radio/appearance/radioDefault.ts +54 -0
- package/src/components/Radio/appearance/radioDisabled.ts +17 -0
- package/src/components/Radio/appearance/radioError.ts +17 -0
- package/src/components/Radio/appearance/radioRequire.ts +17 -0
- package/src/components/Radio/appearance/radioShape.ts +24 -0
- package/src/components/Radio/appearance/radioSize.ts +21 -0
- package/src/components/Radio/appearance/radioStyle.ts +20 -0
- package/src/components/Radio/appearance/radioSuccess.ts +17 -0
- package/src/components/Radio/index.ts +27 -0
- package/src/components/Radio/stories/RadioDefault.stories.tsx +26 -0
- package/src/components/Radio/stories/RadioDisabled.stories.tsx +27 -0
- package/src/components/Radio/stories/RadioError.stories.tsx +26 -0
- package/src/components/Radio/stories/RadioRequire.stories.tsx +26 -0
- package/src/components/Radio/stories/RadioSize.stories.tsx +36 -0
- package/src/components/Radio/stories/RadioStyle.stories.tsx +41 -0
- package/src/components/Radio/stories/RadioSuccess.stories.tsx +26 -0
- package/src/components/Radio/styles/radio.ts +37 -0
- package/src/components/Radio/styles/radioShape.ts +27 -0
- package/src/components/Radio/styles/radioSize.ts +25 -0
- package/src/components/RangeSlider/RangeSlider.interface.ts +35 -0
- package/src/components/RangeSlider/RangeSlider.styles.ts +7 -0
- package/src/components/RangeSlider/RangeSlider.tsx +212 -0
- package/src/components/RangeSlider/index.ts +9 -0
- package/src/components/RangeSlider/stories/RangeSlider.stories.tsx +55 -0
- package/src/components/RangeSlider/styles/rangeSlider.ts +37 -0
- package/src/components/Response/Response.interface.ts +29 -0
- package/src/components/Response/Response.styles.ts +7 -0
- package/src/components/Response/Response.tsx +68 -0
- package/src/components/Response/index.ts +5 -0
- package/src/components/Response/stories/Response.stories.tsx +22 -0
- package/src/components/Response/styles/response.ts +22 -0
- package/src/components/Scrollbar/Scrollbar.interface.ts +19 -0
- package/src/components/Scrollbar/Scrollbar.styles.ts +7 -0
- package/src/components/Scrollbar/Scrollbar.tsx +38 -0
- package/src/components/Scrollbar/index.ts +5 -0
- package/src/components/Scrollbar/stories/Scrollbar.stories.tsx +61 -0
- package/src/components/Scrollbar/styles/scrollbar.ts +12 -0
- package/src/components/Search/Search.interface.ts +23 -0
- package/src/components/Search/Search.styles.ts +7 -0
- package/src/components/Search/Search.tsx +69 -0
- package/src/components/Search/index.ts +5 -0
- package/src/components/Search/stories/Search.stories.tsx +24 -0
- package/src/components/Search/styles/search.ts +28 -0
- package/src/components/Segmented/Segmented.appearance.ts +22 -0
- package/src/components/Segmented/Segmented.interface.ts +101 -0
- package/src/components/Segmented/Segmented.styles.ts +13 -0
- package/src/components/Segmented/Segmented.tsx +219 -0
- package/src/components/Segmented/appearance/segmentedDefault.ts +26 -0
- package/src/components/Segmented/appearance/segmentedDisabled.ts +15 -0
- package/src/components/Segmented/appearance/segmentedError.ts +15 -0
- package/src/components/Segmented/appearance/segmentedRequire.ts +14 -0
- package/src/components/Segmented/appearance/segmentedShape.ts +24 -0
- package/src/components/Segmented/appearance/segmentedSize.ts +31 -0
- package/src/components/Segmented/appearance/segmentedStyle.ts +19 -0
- package/src/components/Segmented/appearance/segmentedSuccess.ts +15 -0
- package/src/components/Segmented/index.ts +38 -0
- package/src/components/Segmented/stories/SegmentedDisabled.stories.tsx +25 -0
- package/src/components/Segmented/stories/SegmentedIcon.stories.tsx +46 -0
- package/src/components/Segmented/stories/SegmentedLabel.stories.tsx +43 -0
- package/src/components/Segmented/stories/SegmentedLabelIcon.stories.tsx +40 -0
- package/src/components/Segmented/stories/SegmentedShape.stories.tsx +54 -0
- package/src/components/Segmented/stories/SegmentedSize.stories.tsx +56 -0
- package/src/components/Segmented/stories/SegmentedStories.config.tsx +89 -0
- package/src/components/Segmented/stories/SegmentedStyle.stories.tsx +42 -0
- package/src/components/Segmented/styles/segmented.ts +27 -0
- package/src/components/Segmented/styles/segmentedShape.ts +37 -0
- package/src/components/Segmented/styles/segmentedSize.ts +65 -0
- package/src/components/Segmented/styles/segmentedWidth.ts +33 -0
- package/src/components/Select/Select.appearance.ts +22 -0
- package/src/components/Select/Select.interface.ts +80 -0
- package/src/components/Select/Select.styles.ts +9 -0
- package/src/components/Select/Select.tsx +178 -0
- package/src/components/Select/appearance/selectDefault.ts +17 -0
- package/src/components/Select/appearance/selectDisabled.ts +13 -0
- package/src/components/Select/appearance/selectError.ts +17 -0
- package/src/components/Select/appearance/selectRequire.ts +17 -0
- package/src/components/Select/appearance/selectShape.ts +21 -0
- package/src/components/Select/appearance/selectSize.ts +30 -0
- package/src/components/Select/appearance/selectStyle.ts +17 -0
- package/src/components/Select/appearance/selectSuccess.ts +17 -0
- package/src/components/Select/index.ts +29 -0
- package/src/components/Select/stories/Select.stories.tsx +67 -0
- package/src/components/Select/styles/select.ts +30 -0
- package/src/components/Select/styles/selectSize.ts +48 -0
- package/src/components/Switch/Switch.appearance.ts +20 -0
- package/src/components/Switch/Switch.interface.ts +70 -0
- package/src/components/Switch/Switch.styles.ts +11 -0
- package/src/components/Switch/Switch.tsx +143 -0
- package/src/components/Switch/appearance/switchDefault.ts +14 -0
- package/src/components/Switch/appearance/switchDisabled.ts +14 -0
- package/src/components/Switch/appearance/switchError.ts +14 -0
- package/src/components/Switch/appearance/switchRequire.ts +14 -0
- package/src/components/Switch/appearance/switchShape.ts +7 -0
- package/src/components/Switch/appearance/switchSize.ts +21 -0
- package/src/components/Switch/appearance/switchStyle.ts +19 -0
- package/src/components/Switch/appearance/switchSuccess.ts +14 -0
- package/src/components/Switch/index.ts +32 -0
- package/src/components/Switch/stories/SwitchDefault.stories.tsx +46 -0
- package/src/components/Switch/stories/SwitchDisabled.stories.tsx +51 -0
- package/src/components/Switch/stories/SwitchError.stories.tsx +46 -0
- package/src/components/Switch/stories/SwitchRequire.stories.tsx +46 -0
- package/src/components/Switch/stories/SwitchSize.stories.tsx +37 -0
- package/src/components/Switch/stories/SwitchStories.config.tsx +28 -0
- package/src/components/Switch/stories/SwitchSuccess.stories.tsx +46 -0
- package/src/components/Switch/stories/SwitchTitleDescSwitch.stories.tsx +50 -0
- package/src/components/Switch/stories/SwitchTitleSwitch.stories.tsx +49 -0
- package/src/components/Switch/styles/switch.ts +43 -0
- package/src/components/Switch/styles/switchAlign.ts +29 -0
- package/src/components/Switch/styles/switchSize.ts +40 -0
- package/src/components/Tab/Tab.interface.ts +21 -0
- package/src/components/Tab/Tab.styles.ts +9 -0
- package/src/components/Tab/Tab.tsx +44 -0
- package/src/components/Tab/index.ts +7 -0
- package/src/components/Tab/stories/Tab.stories.tsx +67 -0
- package/src/components/Tab/styles/tab.ts +19 -0
- package/src/components/Tab/styles/tabSize.ts +41 -0
- package/src/components/Text/Text.interface.ts +32 -0
- package/src/components/Text/Text.styles.ts +7 -0
- package/src/components/Text/Text.tsx +56 -0
- package/src/components/Text/index.ts +5 -0
- package/src/components/Text/stories/Text.stories.tsx +84 -0
- package/src/components/Text/styles/text.ts +7 -0
- package/src/components/Textarea/Textarea.appearance.ts +22 -0
- package/src/components/Textarea/Textarea.interface.ts +81 -0
- package/src/components/Textarea/Textarea.styles.ts +11 -0
- package/src/components/Textarea/Textarea.tsx +158 -0
- package/src/components/Textarea/appearance/textareaDefault.ts +26 -0
- package/src/components/Textarea/appearance/textareaDisabled.ts +17 -0
- package/src/components/Textarea/appearance/textareaError.ts +17 -0
- package/src/components/Textarea/appearance/textareaRequire.ts +17 -0
- package/src/components/Textarea/appearance/textareaShape.ts +24 -0
- package/src/components/Textarea/appearance/textareaSize.ts +22 -0
- package/src/components/Textarea/appearance/textareaStyle.ts +17 -0
- package/src/components/Textarea/appearance/textareaSuccess.ts +17 -0
- package/src/components/Textarea/index.ts +36 -0
- package/src/components/Textarea/stories/Textarea.stories.tsx +61 -0
- package/src/components/Textarea/styles/textarea.ts +17 -0
- package/src/components/Textarea/styles/textareaShape.ts +34 -0
- package/src/components/Textarea/styles/textareaSize.ts +32 -0
- package/src/components/Tile/Tile.appearance.ts +14 -0
- package/src/components/Tile/Tile.interface.ts +97 -0
- package/src/components/Tile/Tile.styles.ts +11 -0
- package/src/components/Tile/Tile.tsx +174 -0
- package/src/components/Tile/appearance/tileShape.ts +24 -0
- package/src/components/Tile/appearance/tileSize.ts +42 -0
- package/src/components/Tile/appearance/tileStyle.ts +17 -0
- package/src/components/Tile/appearance/tileSurface.ts +34 -0
- package/src/components/Tile/index.ts +30 -0
- package/src/components/Tile/stories/TileBadge.stories.tsx +20 -0
- package/src/components/Tile/stories/TileDefault.stories.tsx +40 -0
- package/src/components/Tile/stories/TileIcon.stories.tsx +23 -0
- package/src/components/Tile/stories/TileShape.stories.tsx +52 -0
- package/src/components/Tile/stories/TileSize.stories.tsx +53 -0
- package/src/components/Tile/stories/TileStyle.stories.tsx +40 -0
- package/src/components/Tile/stories/TileSwap.stories.tsx +60 -0
- package/src/components/Tile/styles/tile.ts +27 -0
- package/src/components/Tile/styles/tileShape.ts +34 -0
- package/src/components/Tile/styles/tileSize.ts +62 -0
- package/src/components/Title/Title.interface.ts +26 -0
- package/src/components/Title/Title.styles.ts +7 -0
- package/src/components/Title/Title.tsx +46 -0
- package/src/components/Title/index.ts +5 -0
- package/src/components/Title/stories/Title.stories.tsx +68 -0
- package/src/components/Title/styles/title.ts +7 -0
- package/src/components/Tooltip/Tooltip.appearance.ts +22 -0
- package/src/components/Tooltip/Tooltip.interface.ts +81 -0
- package/src/components/Tooltip/Tooltip.styles.ts +7 -0
- package/src/components/Tooltip/Tooltip.tsx +116 -0
- package/src/components/Tooltip/appearance/tooltipDefault.ts +12 -0
- package/src/components/Tooltip/appearance/tooltipDisabled.ts +11 -0
- package/src/components/Tooltip/appearance/tooltipError.ts +12 -0
- package/src/components/Tooltip/appearance/tooltipRequire.ts +12 -0
- package/src/components/Tooltip/appearance/tooltipShape.ts +24 -0
- package/src/components/Tooltip/appearance/tooltipSize.ts +21 -0
- package/src/components/Tooltip/appearance/tooltipStyle.ts +17 -0
- package/src/components/Tooltip/appearance/tooltipSuccess.ts +12 -0
- package/src/components/Tooltip/index.ts +26 -0
- package/src/components/Tooltip/stories/Tooltip.stories.tsx +61 -0
- package/src/components/Tooltip/styles/tooltip.ts +36 -0
- package/src/components/Warning/Warning.appearance.ts +22 -0
- package/src/components/Warning/Warning.interface.ts +86 -0
- package/src/components/Warning/Warning.styles.ts +11 -0
- package/src/components/Warning/Warning.tsx +116 -0
- package/src/components/Warning/appearance/warningAccent.ts +28 -0
- package/src/components/Warning/appearance/warningError.ts +28 -0
- package/src/components/Warning/appearance/warningInfo.ts +38 -0
- package/src/components/Warning/appearance/warningShape.ts +24 -0
- package/src/components/Warning/appearance/warningSize.ts +20 -0
- package/src/components/Warning/appearance/warningStyle.ts +17 -0
- package/src/components/Warning/appearance/warningSuccess.ts +18 -0
- package/src/components/Warning/appearance/warningWarning.ts +38 -0
- package/src/components/Warning/index.ts +28 -0
- package/src/components/Warning/stories/WarningDefault.stories.tsx +52 -0
- package/src/components/Warning/stories/WarningMuted.stories.tsx +40 -0
- package/src/components/Warning/stories/WarningShape.stories.tsx +52 -0
- package/src/components/Warning/stories/WarningSize.stories.tsx +28 -0
- package/src/components/Warning/stories/WarningStyle.stories.tsx +40 -0
- package/src/components/Warning/styles/warning.ts +13 -0
- package/src/components/Warning/styles/warningShape.ts +38 -0
- package/src/components/Warning/styles/warningSize.ts +31 -0
- package/src/icons/app_logo.svg +56 -0
- package/src/icons/connection.svg +9 -0
- package/src/icons/reject.svg +4 -0
- package/src/images/manager.png +0 -0
- package/src/index.tsx +957 -0
- package/src/module.d.ts +19 -0
- package/src/styles/borderColor/index.ts +35 -0
- package/src/styles/direction/index.ts +30 -0
- package/src/styles/fill/index.ts +58 -0
- package/src/styles/gap/index.ts +19 -0
- package/src/styles/iconFill/index.ts +46 -0
- package/src/styles/shape/index.ts +29 -0
- package/src/styles/textAlign/index.ts +22 -0
- package/src/styles/textColor/index.ts +18 -0
- package/src/styles/textSize/index.ts +55 -0
- package/src/styles/textWeight/index.ts +28 -0
- package/src/styles/titleSize/index.ts +50 -0
- package/src/styles/tokens.ts +31 -0
- package/src/styles/width/index.ts +29 -0
- package/src/utils/colorTokens/colorTokens.interface.ts +3 -0
- package/src/utils/colorTokens/colorTokens.ts +17 -0
- package/src/utils/colorTokens/index.ts +7 -0
- package/src/utils/getVariantsPropsList/getVariantsPropsList.interface.ts +10 -0
- package/src/utils/getVariantsPropsList/getVariantsPropsList.ts +51 -0
- package/src/utils/getVariantsPropsList/index.ts +5 -0
- package/src/utils/index.ts +15 -0
- package/tsconfig.json +14 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react'
|
|
2
|
+
|
|
3
|
+
import { Warning } from '../Warning'
|
|
4
|
+
|
|
5
|
+
const meta = {
|
|
6
|
+
title: 'Molecules / Warning / Size',
|
|
7
|
+
component: Warning,
|
|
8
|
+
args: {
|
|
9
|
+
title: 'Label',
|
|
10
|
+
description: 'Description',
|
|
11
|
+
},
|
|
12
|
+
} satisfies Meta<typeof Warning>
|
|
13
|
+
|
|
14
|
+
export default meta
|
|
15
|
+
|
|
16
|
+
type Story = StoryObj<typeof Warning>
|
|
17
|
+
|
|
18
|
+
export const SizeL: Story = {
|
|
19
|
+
args: {
|
|
20
|
+
appearance: 'infoMutedPrimary sizeL solid rounded',
|
|
21
|
+
},
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export const SizeM: Story = {
|
|
25
|
+
args: {
|
|
26
|
+
appearance: 'infoMutedPrimary sizeM solid rounded',
|
|
27
|
+
},
|
|
28
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react'
|
|
2
|
+
|
|
3
|
+
import { Warning } from '../Warning'
|
|
4
|
+
|
|
5
|
+
const meta = {
|
|
6
|
+
title: 'Molecules / Warning / Style',
|
|
7
|
+
component: Warning,
|
|
8
|
+
args: {
|
|
9
|
+
title: 'Label',
|
|
10
|
+
description: 'Description',
|
|
11
|
+
},
|
|
12
|
+
} satisfies Meta<typeof Warning>
|
|
13
|
+
|
|
14
|
+
export default meta
|
|
15
|
+
|
|
16
|
+
type Story = StoryObj<typeof Warning>
|
|
17
|
+
|
|
18
|
+
export const Solid: Story = {
|
|
19
|
+
args: {
|
|
20
|
+
appearance: 'infoMutedPrimary sizeL solid rounded',
|
|
21
|
+
},
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export const Outlined: Story = {
|
|
25
|
+
args: {
|
|
26
|
+
appearance: 'infoMutedPrimary sizeL outlined rounded',
|
|
27
|
+
},
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export const Full: Story = {
|
|
31
|
+
args: {
|
|
32
|
+
appearance: 'infoMutedPrimary sizeL full rounded',
|
|
33
|
+
},
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export const Ghost: Story = {
|
|
37
|
+
args: {
|
|
38
|
+
appearance: 'infoMutedPrimary sizeL ghost rounded',
|
|
39
|
+
},
|
|
40
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { StyleSheet } from 'react-native'
|
|
2
|
+
|
|
3
|
+
import { getVariantsPropsList } from '../../../utils'
|
|
4
|
+
|
|
5
|
+
const warningShapeStyles = StyleSheet.create({
|
|
6
|
+
warning_shape_circular: {
|
|
7
|
+
borderRadius: 100,
|
|
8
|
+
overflow: 'hidden',
|
|
9
|
+
},
|
|
10
|
+
warning_shape_geometric: {
|
|
11
|
+
borderRadius: 0,
|
|
12
|
+
},
|
|
13
|
+
warning_shape_rounded: {
|
|
14
|
+
borderRadius: 8,
|
|
15
|
+
},
|
|
16
|
+
warning_shape_roundedL: {
|
|
17
|
+
borderRadius: 12,
|
|
18
|
+
},
|
|
19
|
+
warning_shape_roundedM: {
|
|
20
|
+
borderRadius: 6,
|
|
21
|
+
},
|
|
22
|
+
warning_shape_roundedS: {
|
|
23
|
+
borderRadius: 4,
|
|
24
|
+
},
|
|
25
|
+
warning_shape_roundedXL: {
|
|
26
|
+
borderRadius: 16,
|
|
27
|
+
},
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
const warningShapeList = getVariantsPropsList(
|
|
31
|
+
warningShapeStyles,
|
|
32
|
+
'warning_shape_',
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
type warningShapePropsType = (typeof warningShapeList)[number]
|
|
36
|
+
|
|
37
|
+
export { warningShapeList, warningShapeStyles }
|
|
38
|
+
export type { warningShapePropsType }
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { StyleSheet } from 'react-native'
|
|
2
|
+
|
|
3
|
+
import { getVariantsPropsList } from '../../../utils'
|
|
4
|
+
|
|
5
|
+
const warningSizeStyles = StyleSheet.create({
|
|
6
|
+
warning__content_size_l: {
|
|
7
|
+
minWidth: 145,
|
|
8
|
+
gap: 2,
|
|
9
|
+
},
|
|
10
|
+
warning__content_size_m: {
|
|
11
|
+
minWidth: 145,
|
|
12
|
+
gap: 2,
|
|
13
|
+
},
|
|
14
|
+
warning_size_l: {
|
|
15
|
+
paddingVertical: 24,
|
|
16
|
+
paddingHorizontal: 16,
|
|
17
|
+
gap: 8,
|
|
18
|
+
},
|
|
19
|
+
warning_size_m: {
|
|
20
|
+
paddingVertical: 16,
|
|
21
|
+
paddingHorizontal: 12,
|
|
22
|
+
gap: 8,
|
|
23
|
+
},
|
|
24
|
+
})
|
|
25
|
+
|
|
26
|
+
const warningSizeList = getVariantsPropsList(warningSizeStyles, 'warning_size_')
|
|
27
|
+
|
|
28
|
+
type warningSizePropsType = (typeof warningSizeList)[number]
|
|
29
|
+
|
|
30
|
+
export { warningSizeList, warningSizeStyles }
|
|
31
|
+
export type { warningSizePropsType }
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<svg width="146" height="120" viewBox="0 0 146 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M50.7466 111.664C50.7587 112.485 50.5243 113.29 50.0733 113.979C49.6222 114.667 48.9749 115.207 48.2136 115.529C47.4524 115.852 46.6116 115.943 45.7982 115.79C44.9849 115.637 44.2358 115.248 43.6461 114.672C43.0565 114.095 42.653 113.358 42.487 112.554C42.321 111.75 42.4 110.915 42.7139 110.155C43.0278 109.395 43.5625 108.745 44.2499 108.288C44.9373 107.831 45.7464 107.586 46.5742 107.586C47.1181 107.582 47.6575 107.685 48.1616 107.887C48.6656 108.09 49.1245 108.389 49.5119 108.768C49.8994 109.147 50.2079 109.597 50.4197 110.094C50.6315 110.591 50.7426 111.124 50.7466 111.664Z" fill="#E5802D"/>
|
|
3
|
+
<path d="M120.287 115.813C120.297 116.634 120.06 117.438 119.608 118.125C119.155 118.812 118.507 119.35 117.746 119.671C116.984 119.991 116.144 120.08 115.331 119.926C114.519 119.772 113.771 119.382 113.182 118.805C112.594 118.229 112.191 117.492 112.026 116.688C111.861 115.884 111.941 115.049 112.255 114.29C112.57 113.531 113.104 112.882 113.792 112.425C114.479 111.968 115.287 111.724 116.115 111.724C117.215 111.718 118.272 112.146 119.054 112.912C119.837 113.679 120.28 114.722 120.287 115.813Z" fill="#097E40"/>
|
|
4
|
+
<path d="M34.5169 60.5232C34.5169 65.8074 29.8352 70.0917 24.0667 70.0917C18.2982 70.0917 13.6165 65.8074 13.6165 60.5232C13.6165 55.2389 18.294 50.9586 24.0667 50.9586C29.8394 50.9586 34.5169 55.2429 34.5169 60.5232Z" fill="#E92E32"/>
|
|
5
|
+
<path d="M84.1003 111.07C84.1172 112.178 83.8016 113.265 83.1936 114.193C82.5856 115.122 81.7128 115.851 80.6862 116.286C79.6596 116.721 78.5256 116.844 77.4286 116.638C76.3315 116.432 75.3209 115.908 74.5255 115.131C73.73 114.354 73.1856 113.36 72.9615 112.275C72.7374 111.19 72.8437 110.064 73.267 109.039C73.6903 108.015 74.4113 107.138 75.3385 106.521C76.2656 105.904 77.3568 105.574 78.4733 105.574C79.9543 105.564 81.3789 106.137 82.4341 107.167C83.4892 108.198 84.0886 109.602 84.1003 111.07Z" fill="#097E40"/>
|
|
6
|
+
<path d="M72.8465 102.341C72.8554 102.974 72.6743 103.595 72.3264 104.125C71.9785 104.655 71.4794 105.07 70.8927 105.319C70.306 105.567 69.6581 105.636 69.0315 105.518C68.4049 105.4 67.8278 105.1 67.3736 104.656C66.9195 104.212 66.6088 103.644 66.4811 103.024C66.3534 102.404 66.4144 101.761 66.6564 101.175C66.8984 100.59 67.3105 100.09 67.8402 99.7372C68.3699 99.3848 68.9933 99.1966 69.6311 99.1965C70.0504 99.1936 70.4663 99.2727 70.8548 99.4291C71.2433 99.5856 71.597 99.8164 71.8956 100.108C72.1942 100.4 72.4318 100.748 72.595 101.131C72.7581 101.514 72.8436 101.925 72.8465 102.341Z" fill="#FFDE17"/>
|
|
7
|
+
<path d="M136.976 68.8063C137.008 70.9952 136.382 73.144 135.179 74.9795C133.976 76.8149 132.25 78.254 130.22 79.1136C128.19 79.9733 125.948 80.2146 123.779 79.807C121.61 79.3994 119.613 78.3613 118.04 76.8246C116.468 75.288 115.392 73.3223 114.95 71.1776C114.507 69.0329 114.718 66.8062 115.555 64.7806C116.393 62.7551 117.818 61.0222 119.652 59.8026C121.485 58.5829 123.642 57.9315 125.849 57.9313C128.779 57.9106 131.597 59.0446 133.683 61.084C135.77 63.1234 136.954 65.9011 136.976 68.8063Z" fill="#FFDE17"/>
|
|
8
|
+
<path d="M125.646 15.2771C125.663 16.3843 125.347 17.4715 124.739 18.4003C124.132 19.3291 123.259 20.0576 122.232 20.4931C121.206 20.9286 120.072 21.0513 118.975 20.8457C117.877 20.6401 116.867 20.1155 116.071 19.3385C115.276 18.5616 114.731 17.5675 114.507 16.4827C114.283 15.398 114.389 14.2716 114.812 13.2469C115.236 12.2223 115.957 11.3457 116.884 10.7286C117.811 10.1116 118.902 9.78204 120.019 9.78191C120.752 9.776 121.479 9.91348 122.159 10.1865C122.839 10.4595 123.458 10.8627 123.981 11.3731C124.503 11.8834 124.919 12.4909 125.205 13.1607C125.491 13.8306 125.64 14.5498 125.646 15.2771Z" fill="#E5802D"/>
|
|
9
|
+
<path d="M26.6356 20.9679C26.6609 22.7084 26.164 24.417 25.2081 25.8761C24.2522 27.3353 22.8805 28.479 21.2678 29.1616C19.655 29.8442 17.8742 30.0348 16.152 29.7092C14.4297 29.3835 12.8441 28.5564 11.5969 27.3331C10.3498 26.1097 9.49744 24.5456 9.14858 22.8397C8.79971 21.1339 8.97005 19.3635 9.63791 17.7541C10.3058 16.1447 11.4409 14.769 12.8988 13.8023C14.3567 12.8355 16.0714 12.3214 17.8246 12.3255C18.9761 12.3171 20.1179 12.534 21.185 12.9638C22.2521 13.3936 23.2234 14.0279 24.0435 14.8305C24.8637 15.633 25.5166 16.588 25.965 17.6411C26.4134 18.6942 26.6485 19.8246 26.6568 20.9679" fill="#E92E32"/>
|
|
10
|
+
<path d="M40.6923 6.68788C40.6986 7.32003 40.5153 7.93976 40.1657 8.46837C39.8161 8.99698 39.316 9.4106 38.7288 9.6567C38.1416 9.9028 37.4939 9.97027 36.868 9.85053C36.2421 9.7308 35.6662 9.42926 35.2135 8.98423C34.7607 8.5392 34.4516 7.97075 34.3253 7.3511C34.1991 6.73145 34.2614 6.08857 34.5043 5.50411C34.7473 4.91965 35.1599 4.41999 35.6898 4.06861C36.2197 3.71723 36.843 3.52999 37.4804 3.53065C37.9009 3.52694 38.3179 3.60587 38.7074 3.76288C39.097 3.91988 39.4512 4.15184 39.7499 4.44539C40.0485 4.73893 40.2855 5.08824 40.4473 5.47313C40.6091 5.85803 40.6923 6.2709 40.6923 6.68788Z" fill="#FFDE17"/>
|
|
11
|
+
<path d="M63.2002 17.8285C63.2106 18.4613 63.0308 19.0829 62.6839 19.6141C62.337 20.1453 61.8385 20.5621 61.2519 20.8114C60.6654 21.0607 60.0173 21.1313 59.3901 21.0142C58.763 20.8971 58.1852 20.5976 57.7302 20.1537C57.2753 19.7099 56.9638 19.1419 56.8355 18.5219C56.7071 17.902 56.7676 17.2582 57.0094 16.6725C57.2511 16.0867 57.6632 15.5856 58.193 15.2329C58.7229 14.8801 59.3466 14.6917 59.9847 14.6916C60.8303 14.6859 61.6435 15.0129 62.2463 15.6009C62.8491 16.189 63.1921 16.9901 63.2002 17.8285Z" fill="#E92E32"/>
|
|
12
|
+
<path d="M132.332 46.1526C132.342 46.7854 132.161 47.4067 131.814 47.9375C131.466 48.4682 130.967 48.8844 130.38 49.133C129.793 49.3817 129.145 49.4515 128.518 49.3337C127.891 49.2158 127.314 48.9156 126.859 48.4712C126.405 48.0268 126.094 47.4584 125.967 46.8383C125.839 46.2182 125.9 45.5745 126.143 44.9891C126.385 44.4037 126.798 43.903 127.328 43.5509C127.858 43.1988 128.482 43.0111 129.12 43.0118C129.539 43.0089 129.955 43.0878 130.343 43.244C130.731 43.4003 131.084 43.6308 131.382 43.9225C131.68 44.2141 131.918 44.5612 132.081 44.9438C132.244 45.3265 132.329 45.7372 132.332 46.1526Z" fill="#FFDE17"/>
|
|
13
|
+
<path d="M11.753 84.3488C11.769 85.4558 11.4527 86.5425 10.8443 87.4707C10.2358 88.3989 9.36271 89.1266 8.33602 89.5613C7.30934 89.996 6.17547 90.118 5.07866 89.9119C3.98185 89.7057 2.97165 89.1807 2.17658 88.4035C1.38151 87.6264 0.837491 86.6323 0.613728 85.5476C0.389965 84.463 0.496569 83.3369 0.919981 82.3125C1.34339 81.2881 2.06448 80.4118 2.99151 79.795C3.91854 79.1782 5.00962 78.8488 6.12596 78.8486C6.85975 78.8428 7.58749 78.9805 8.26756 79.2539C8.94763 79.5272 9.56669 79.9309 10.0893 80.4417C10.6119 80.9526 11.0279 81.5606 11.3134 82.231C11.5988 82.9014 11.7482 83.6211 11.753 84.3488Z" fill="#FFDE17"/>
|
|
14
|
+
<path d="M145.5 94.2295C145.526 96.1271 144.983 97.9896 143.939 99.5802C142.896 101.171 141.399 102.418 139.639 103.162C137.879 103.907 135.935 104.115 134.055 103.761C132.175 103.407 130.444 102.507 129.081 101.174C127.719 99.8419 126.786 98.1377 126.403 96.2785C126.02 94.4192 126.203 92.4889 126.929 90.7331C127.655 88.9773 128.891 87.4753 130.48 86.4181C132.069 85.3609 133.94 84.7963 135.853 84.7961C138.393 84.7806 140.835 85.7653 142.644 87.5339C144.453 89.3026 145.48 91.7107 145.5 94.2295Z" fill="#E5802D"/>
|
|
15
|
+
<path d="M89.2295 7.06859C89.2508 8.49215 88.8445 9.88982 88.0624 11.0837C87.2804 12.2776 86.1578 13.2138 84.8376 13.7731C83.5174 14.3324 82.0593 14.4895 80.6488 14.2245C79.2383 13.9595 77.9392 13.2842 76.9168 12.2848C75.8944 11.2853 75.1949 10.0068 74.9074 8.61196C74.6199 7.21709 74.7573 5.76892 75.3022 4.45174C75.8471 3.13456 76.7748 2.00795 77.9673 1.21524C79.1598 0.422525 80.5631 -0.000439787 81.9987 0.000185802C82.9415 -0.00656857 83.8764 0.170893 84.75 0.522463C85.6236 0.874033 86.4188 1.39282 87.0903 2.04918C87.7617 2.70555 88.2962 3.48666 88.6633 4.34789C89.0303 5.20913 89.2227 6.13362 89.2295 7.06859Z" fill="#097E40"/>
|
|
16
|
+
<path d="M30.5223 106.27C30.5426 107.693 30.1356 109.09 29.3531 110.283C28.5706 111.477 27.4479 112.412 26.1278 112.971C24.8078 113.529 23.35 113.686 21.9399 113.421C20.5298 113.155 19.2312 112.48 18.2091 111.481C17.1871 110.482 16.4878 109.203 16.2002 107.809C15.9127 106.414 16.0499 104.967 16.5943 103.65C17.1387 102.333 18.0659 101.206 19.2577 100.413C20.4496 99.6203 21.8523 99.1968 23.2876 99.1966C24.231 99.1897 25.1666 99.3672 26.0408 99.7189C26.9151 100.071 27.7109 100.59 28.3827 101.247C29.0546 101.904 29.5894 102.685 29.9565 103.547C30.3236 104.409 30.5159 105.334 30.5223 106.27Z" fill="#E92E32"/>
|
|
17
|
+
<path d="M130.452 69.5672L122.016 68.1142L120.76 72.8363L130.207 74.4491L129.83 75.8621L117.506 73.7444L120.995 60.6897L132.805 62.7056L132.427 64.1186L123.464 62.5894L122.389 66.7303L130.824 68.1832L130.452 69.5672Z" fill="#ffffff"/>
|
|
18
|
+
<path d="M133.778 95.957L133.088 100.314L131.031 100.74L133.39 86.9067L135.763 86.3904L143.893 97.9369L141.763 98.3977L139.208 94.7665L133.778 95.957ZM138.548 93.5717L136.188 90.252C135.66 89.501 135.26 88.797 134.864 88.1185H134.817C134.758 88.8994 134.711 89.74 134.566 90.5848L133.897 94.583L138.548 93.5717Z" fill="#ffffff"/>
|
|
19
|
+
<path d="M80.5622 8.09336L79.0442 10.9279L77.7594 10.5829L82.6974 1.59442L84.1795 1.99535L85.798 12.7554L84.4738 12.3965L83.9714 9.01178L80.5622 8.09336ZM83.896 7.95351L83.4187 4.85321C83.3276 4.21151 83.2617 3.56421 83.2214 2.9138H83.1926C82.9522 3.44994 82.7082 4.02337 82.4067 4.5735L80.9713 7.17492L83.896 7.95351Z" fill="#ffffff"/>
|
|
20
|
+
<path d="M29.4274 22.4162L28.9334 23.0606L28.7877 22.6281L29.4224 21.8194L29.7953 21.6767L30.3955 26.3L29.9731 26.46L29.4274 22.4162Z" fill="#ffffff"/>
|
|
21
|
+
<path d="M21.1301 52.553C22.3702 52.6096 23.6033 52.78 24.8157 53.0622C26.8019 53.4974 28.014 54.0849 28.8126 54.9683C29.1612 55.2887 29.4215 55.7036 29.5657 56.1688C29.71 56.634 29.7327 57.1321 29.6316 57.6099C29.3613 58.9155 28.1246 59.8207 26.4251 59.96V60.0209C27.8216 60.6432 29.3163 62.0707 28.9068 64.0508C28.7975 64.5776 28.5704 65.0686 28.2446 65.4822C27.9188 65.8958 27.504 66.2199 27.0353 66.4269C25.8068 67.0449 23.9926 67.0536 21.4864 66.4966C20.4571 66.2745 19.44 65.9926 18.4397 65.6523L21.1301 52.553ZM20.6674 64.8298C21.2046 65.0098 21.7517 65.1552 22.3054 65.265C24.353 65.7219 26.4005 65.4913 26.7855 63.5503C27.1581 61.7486 25.516 60.5779 23.3497 60.0949L21.7116 59.7293L20.6674 64.8298ZM21.986 58.4585L23.7879 58.8589C25.86 59.3202 27.2933 58.6239 27.5595 57.3358C27.8789 55.7952 26.6626 54.8595 24.656 54.4156C24.0706 54.2711 23.4747 54.1794 22.8747 54.1414L21.986 58.4585Z" fill="#ffffff"/>
|
|
22
|
+
<g clip-path="url(#clip0_1432_2242)">
|
|
23
|
+
<rect x="28.9472" y="20.6897" width="83.4483" height="82.7586" rx="12" fill="#F18D8D"/>
|
|
24
|
+
<rect x="28.9472" y="20.6897" width="83.4483" height="82.7586" fill="#ffffff"/>
|
|
25
|
+
<path d="M68.4734 69.8923C69.1363 69.3335 69.4512 69.4321 69.4181 70.1881C69.3849 70.4181 69.3352 70.6975 69.2689 71.0262C69.1363 71.5192 68.9209 72.0943 68.6225 72.7516C68.3573 73.409 67.8601 74.2142 67.1308 75.1673C66.4015 76.1204 65.5397 76.9914 64.5452 77.7802C63.5839 78.5361 62.2911 79.1934 60.6668 79.7522C59.0425 80.3438 57.269 80.656 55.3463 80.6888C50.5066 80.7874 46.3961 78.9634 43.0149 75.2166C39.6668 71.4699 37.9928 67.0165 37.9928 61.8565C37.9928 56.7951 39.6171 52.4567 42.8657 48.8414C46.1475 45.1933 50.3243 43.3528 55.3961 43.3199C59.2745 43.287 62.4568 44.1251 64.943 45.8342C67.4292 47.5103 68.6722 49.6795 68.6722 52.3417C68.6722 53.7878 68.175 55.086 67.1805 56.2363C66.1861 57.3867 64.8435 57.9618 63.1529 57.9618C62.059 57.9618 61.1308 57.7975 60.3684 57.4688C59.6391 57.1073 59.2911 56.68 59.3242 56.187C59.5894 54.3794 59.4237 52.8182 58.827 51.5036C58.2635 50.1889 57.2027 49.5316 55.6447 49.5316C54.2193 49.5316 52.9762 50.2547 51.9154 51.7008C50.8546 53.1469 50.1088 54.8395 49.6779 56.7786C49.2801 58.7177 49.1972 60.5418 49.4292 62.2509C49.7939 65.2746 50.7055 67.7067 52.164 69.5472C53.6557 71.3877 55.3463 72.5216 57.2358 72.9488C59.1253 73.3432 61.0811 73.2775 63.1032 72.7516C65.1253 72.2258 66.9153 71.2727 68.4734 69.8923Z" fill="#000000"/>
|
|
26
|
+
<path d="M96.0846 59.3915C95.8857 59.523 95.9023 59.6216 96.1343 59.6873C98.2227 60.4104 99.8304 61.6264 100.957 63.3355C102.118 65.0116 102.698 66.77 102.698 68.6105C102.698 70.7139 102.267 72.5709 101.405 74.1813C100.543 75.7589 99.3663 77.0243 97.8746 77.9774C96.3829 78.8976 94.7255 79.5878 92.9023 80.048C91.1122 80.5081 89.173 80.7381 87.0846 80.7381C84.9299 80.7381 83.0073 80.4259 81.3167 79.8015C79.6261 79.2099 78.2338 78.4375 77.1399 77.4844C76.0792 76.5313 75.2007 75.4138 74.5046 74.132C73.8085 72.8174 73.3112 71.5356 73.0129 70.2867C72.7477 69.0049 72.6151 67.7067 72.6151 66.392V45.144C72.6151 44.9468 72.698 44.8482 72.8637 44.8482C76.4106 43.8293 80.8526 43.3199 86.1896 43.3199C87.9134 43.3199 89.5377 43.4678 91.0625 43.7636C92.6205 44.0265 94.1122 44.4702 95.5376 45.0947C96.963 45.7191 98.0901 46.6394 98.9188 47.8554C99.7807 49.0715 100.212 50.5176 100.212 52.1938C100.212 53.8042 99.7807 55.3161 98.9188 56.7293C98.057 58.1097 97.1122 58.9971 96.0846 59.3915ZM89.9189 52.9826C89.9189 51.0106 89.2393 49.7288 87.8802 49.1372C86.5211 48.5456 85.0625 48.447 83.5045 48.8414V58.159C85.6924 58.159 87.3001 57.666 88.3277 56.68C89.3885 55.6612 89.9189 54.4287 89.9189 52.9826ZM87.7808 74.8222C89.1399 74.8222 90.2006 74.3457 90.9631 73.3925C91.7255 72.4394 92.1067 71.1576 92.1067 69.5472C92.1067 67.3451 91.2614 65.6854 89.5708 64.5679C87.8802 63.4505 85.8581 63.1218 83.5045 63.5819V69.9416C83.6371 73.1953 85.0625 74.8222 87.7808 74.8222Z" fill="#000000"/>
|
|
27
|
+
<path d="M76.946 84.0585C76.9527 84.5154 76.8222 84.964 76.5712 85.3472C76.3201 85.7304 75.9598 86.0308 75.536 86.2103C75.1123 86.3898 74.6442 86.4403 74.1915 86.3552C73.7388 86.2702 73.3218 86.0535 72.9935 85.7328C72.6653 85.4121 72.4407 85.0017 72.3483 84.554C72.2559 84.1063 72.2999 83.6415 72.4746 83.2187C72.6494 82.7958 72.947 82.4341 73.3296 82.1795C73.7123 81.9249 74.1626 81.7889 74.6234 81.7889C74.9262 81.7866 75.2265 81.8436 75.507 81.9564C75.7876 82.0693 76.043 82.2359 76.2587 82.4466C76.4744 82.6574 76.6461 82.9082 76.764 83.1848C76.8819 83.4613 76.9437 83.7582 76.946 84.0585Z" fill="#E5802D"/>
|
|
28
|
+
<path d="M58.6102 95.2493C58.6175 95.8582 58.4398 96.4555 58.0996 96.9653C57.7593 97.4751 57.2719 97.8743 56.6993 98.1123C56.1267 98.3504 55.4947 98.4164 54.8837 98.302C54.2727 98.1877 53.7102 97.8981 53.2677 97.47C52.8252 97.042 52.5226 96.4949 52.3986 95.8982C52.2745 95.3015 52.3344 94.6821 52.5707 94.1188C52.8071 93.5556 53.2091 93.0738 53.7259 92.7347C54.2426 92.3956 54.8506 92.2145 55.4727 92.2145C56.2998 92.21 57.0949 92.5272 57.6832 93.0962C58.2715 93.6653 58.6049 94.4397 58.6102 95.2493Z" fill="#097E40"/>
|
|
29
|
+
<path d="M81.7543 95.8903C81.7543 99.6625 78.5963 102.721 74.7052 102.721C70.8141 102.721 67.6561 99.6625 67.6561 95.8903C67.6561 92.1181 70.8113 89.0625 74.7052 89.0625C78.5991 89.0625 81.7543 92.1209 81.7543 95.8903Z" fill="#E92E32"/>
|
|
30
|
+
<path d="M35.8734 102.078C35.8894 103.136 35.5756 104.175 34.972 105.062C34.3684 105.95 33.5023 106.645 32.4837 107.061C31.4652 107.476 30.3404 107.593 29.2523 107.396C28.1642 107.199 27.1621 106.697 26.3733 105.954C25.5845 105.211 25.0448 104.261 24.8229 103.224C24.6009 102.188 24.7066 101.111 25.1267 100.132C25.5467 99.153 26.262 98.3154 27.1817 97.7258C28.1013 97.1362 29.1837 96.8214 30.2912 96.8213C31.019 96.8162 31.7407 96.9481 32.4151 97.2096C33.0896 97.471 33.7035 97.8569 34.2218 98.3451C34.7402 98.8332 35.1528 99.4142 35.4362 100.055C35.7196 100.695 35.8682 101.383 35.8734 102.078Z" fill="#E5802D"/>
|
|
31
|
+
<path d="M48.5864 87.2686C48.5976 88.0461 48.3777 88.8094 47.9547 89.4614C47.5318 90.1133 46.9248 90.6245 46.2111 90.9298C45.4974 91.2352 44.7092 91.3209 43.9468 91.176C43.1843 91.0312 42.4821 90.6624 41.9294 90.1166C41.3767 89.5707 40.9985 88.8725 40.843 88.1106C40.6874 87.3488 40.7615 86.5578 41.0558 85.8383C41.3502 85.1188 41.8514 84.5032 42.4959 84.07C43.1403 83.6368 43.8988 83.4054 44.6748 83.4053C45.1849 83.4012 45.6908 83.4979 46.1635 83.6899C46.6363 83.8819 47.0666 84.1655 47.4299 84.5243C47.7932 84.8831 48.0824 85.3102 48.2808 85.781C48.4793 86.2519 48.5831 86.7574 48.5864 87.2686Z" fill="#FFDE17"/>
|
|
32
|
+
<path d="M44.7561 88.4146C44.7724 89.505 44.4636 90.5756 43.8691 91.4902C43.2746 92.4048 42.4211 93.1219 41.4174 93.5504C40.4136 93.9789 39.305 94.0994 38.2325 93.8965C37.16 93.6936 36.1722 93.1765 35.3948 92.411C34.6173 91.6455 34.0854 90.6662 33.8667 89.5978C33.6481 88.5294 33.7525 87.4202 34.1667 86.4112C34.581 85.4023 35.2863 84.5393 36.193 83.932C37.0996 83.3248 38.1666 83.0008 39.2582 83.0012C39.975 82.996 40.6858 83.1319 41.35 83.4011C42.0142 83.6703 42.6188 84.0676 43.1294 84.5703C43.6399 85.073 44.0463 85.6712 44.3254 86.3308C44.6046 86.9904 44.7509 87.6985 44.7561 88.4146Z" fill="#097E40"/>
|
|
33
|
+
<path d="M67.0036 81.0316C67.0177 82.0175 66.7358 82.9853 66.1937 83.8118C65.6516 84.6384 64.8739 85.2864 63.9594 85.6734C63.045 86.0604 62.0351 86.1689 61.0583 85.9851C60.0815 85.8013 59.1818 85.3336 58.4738 84.6414C57.7658 83.9492 57.2814 83.0637 57.0822 82.0977C56.883 81.1317 56.978 80.1288 57.3552 79.2164C57.7323 78.3041 58.3746 77.5237 59.2002 76.9744C60.0259 76.4251 60.9976 76.1317 61.9918 76.1316C62.6454 76.1268 63.2935 76.2497 63.8991 76.4934C64.5048 76.7371 65.0561 77.0967 65.5215 77.5518C65.9869 78.0068 66.3574 78.5483 66.6117 79.1454C66.866 79.7425 66.9992 80.3834 67.0036 81.0316Z" fill="#E92E32"/>
|
|
34
|
+
<path d="M72.8056 91.2446C73.6765 91.281 74.5427 91.3903 75.3943 91.5715C76.7893 91.8509 77.6408 92.2282 78.2016 92.7954C78.4465 93.0011 78.6294 93.2675 78.7307 93.5661C78.832 93.8648 78.848 94.1846 78.7769 94.4914C78.5871 95.3297 77.7184 95.9109 76.5247 96.0003V96.0394C77.5056 96.439 78.5554 97.3554 78.2678 98.6268C78.1911 98.965 78.0315 99.2803 77.8027 99.5458C77.5739 99.8114 77.2825 100.019 76.9533 100.152C76.0904 100.549 74.8161 100.555 73.0558 100.197C72.3328 100.055 71.6184 99.8735 70.9158 99.655L72.8056 91.2446ZM72.4805 99.1269C72.8579 99.2425 73.2421 99.3358 73.6311 99.4064C75.0693 99.6997 76.5075 99.5517 76.7778 98.3055C77.0396 97.1487 75.8862 96.397 74.3646 96.0869L73.214 95.8522L72.4805 99.1269ZM73.4067 95.0363L74.6723 95.2934C76.1278 95.5895 77.1345 95.1425 77.3215 94.3154C77.5458 93.3263 76.6915 92.7255 75.2821 92.4405C74.8709 92.3477 74.4523 92.2888 74.0309 92.2645L73.4067 95.0363Z" fill="#ffffff"/>
|
|
35
|
+
<path d="M95.2816 87.6747C95.2922 88.3882 95.0934 89.0888 94.7104 89.6873C94.3274 90.2859 93.7775 90.7553 93.1308 91.0358C92.4841 91.3164 91.7697 91.3954 91.0785 91.2628C90.3874 91.1303 89.7507 90.7921 89.2496 90.2914C88.7485 89.7906 88.4055 89.15 88.2643 88.4509C88.1231 87.7518 88.1901 87.0259 88.4568 86.3656C88.7235 85.7053 89.1777 85.1404 89.7618 84.7427C90.3458 84.3451 91.0333 84.1327 91.7367 84.1326C92.6697 84.1258 93.5672 84.495 94.2319 85.1592C94.8966 85.8234 95.2742 86.7282 95.2816 87.6747Z" fill="#097E40"/>
|
|
36
|
+
<path d="M112.476 88.8018C112.496 90.1645 112.105 91.5022 111.351 92.6449C110.598 93.7876 109.517 94.6835 108.245 95.2186C106.974 95.7538 105.57 95.9041 104.212 95.6503C102.854 95.3966 101.603 94.7503 100.618 93.7936C99.6339 92.837 98.9603 91.6132 98.6832 90.278C98.4061 88.9428 98.538 87.5565 99.0623 86.2955C99.5866 85.0345 100.479 83.9557 101.627 83.1964C102.775 82.4371 104.126 82.0316 105.509 82.0314C107.343 82.0185 109.108 82.7245 110.414 83.9942C111.721 85.2638 112.463 86.9931 112.476 88.8018Z" fill="#FFDE17"/>
|
|
37
|
+
<path d="M118.914 93.7679C118.927 94.6656 118.67 95.5467 118.176 96.2992C117.683 97.0517 116.974 97.6416 116.142 97.9938C115.309 98.3461 114.389 98.4447 113.5 98.2773C112.611 98.1098 111.792 97.6838 111.147 97.0534C110.502 96.4231 110.061 95.6168 109.88 94.7372C109.699 93.8576 109.785 92.9444 110.129 92.1138C110.472 91.2831 111.057 90.5725 111.809 90.0724C112.561 89.5722 113.446 89.3051 114.351 89.305C115.552 89.2977 116.708 89.7635 117.563 90.6003C118.419 91.437 118.905 92.5762 118.914 93.7679Z" fill="#E5802D"/>
|
|
38
|
+
<path d="M108.478 89.7598L104.075 88.8388L103.419 91.832L108.35 92.8543L108.153 93.75L101.72 92.4077L103.542 84.1325L109.706 85.4104L109.509 86.3061L104.83 85.3367L104.269 87.9616L108.673 88.8826L108.478 89.7598Z" fill="#ffffff"/>
|
|
39
|
+
<path d="M113.503 94.8545L113.184 96.8665L112.232 97.0636L113.324 90.6749L114.421 90.4364L118.181 95.7689L117.196 95.9817L116.015 94.3047L113.503 94.8545ZM115.709 93.753L114.618 92.2198C114.374 91.873 114.189 91.5478 114.005 91.2345H113.984C113.956 91.5951 113.934 91.9833 113.867 92.3735L113.558 94.22L115.709 93.753Z" fill="#ffffff"/>
|
|
40
|
+
<path d="M39.8669 29.0109C39.8757 29.7555 39.6589 30.4858 39.2439 31.1093C38.8289 31.7328 38.2345 32.2212 37.5361 32.5127C36.8377 32.8041 36.0668 32.8854 35.3213 32.7463C34.5757 32.6071 33.8891 32.2538 33.3485 31.7311C32.8079 31.2084 32.4379 30.54 32.2852 29.8105C32.1325 29.0811 32.2041 28.3236 32.4909 27.6342C32.7778 26.9448 33.2669 26.3546 33.8962 25.9384C34.5255 25.5222 35.2667 25.2988 36.0256 25.2965C36.5269 25.2913 37.0243 25.3833 37.4891 25.5675C37.9539 25.7516 38.3771 26.0241 38.7341 26.3693C39.0912 26.7146 39.3751 27.1257 39.5695 27.5791C39.7639 28.0324 39.865 28.519 39.8669 29.0109Z" fill="#097E40"/>
|
|
41
|
+
<path d="M106.69 35.2886C106.704 36.1946 106.444 37.0842 105.942 37.8442C105.441 38.6042 104.72 39.2003 103.873 39.5566C103.025 39.913 102.089 40.0134 101.183 39.8452C100.278 39.6769 99.4435 39.2476 98.7867 38.6119C98.13 37.9762 97.6805 37.1628 97.4954 36.2751C97.3104 35.3875 97.3981 34.4659 97.7475 33.6274C98.0969 32.789 98.6921 32.0717 99.4575 31.5668C100.223 31.0619 101.124 30.7923 102.045 30.7922C102.651 30.7873 103.251 30.8998 103.812 31.1232C104.374 31.3466 104.884 31.6765 105.316 32.0941C105.747 32.5117 106.091 33.0088 106.327 33.5569C106.562 34.105 106.686 34.6935 106.69 35.2886Z" fill="#E5802D"/>
|
|
42
|
+
<path d="M55.9846 31.9379C56.0061 33.4056 55.5848 34.8464 54.7743 36.0768C53.9638 37.3073 52.8008 38.2717 51.4334 38.8473C50.066 39.423 48.556 39.5837 47.0958 39.3091C45.6356 39.0345 44.2912 38.337 43.2337 37.3054C42.1763 36.2738 41.4536 34.9548 41.1578 33.5163C40.862 32.0778 41.0064 30.585 41.5727 29.2278C42.139 27.8706 43.1014 26.7106 44.3376 25.8954C45.5737 25.0801 47.0275 24.6466 48.514 24.65C49.4903 24.6429 50.4585 24.8258 51.3632 25.1883C52.2679 25.5507 53.0915 26.0856 53.7869 26.7624C54.4823 27.4391 55.0359 28.2445 55.4161 29.1325C55.7962 30.0205 55.9956 30.9738 56.0027 31.9379" fill="#E92E32"/>
|
|
43
|
+
<path d="M72.3009 34.589C72.3091 35.4301 72.0722 36.2547 71.6203 36.9581C71.1684 37.6614 70.5219 38.2118 69.763 38.5392C69.004 38.8667 68.1669 38.9564 67.3578 38.7971C66.5488 38.6378 65.8044 38.2366 65.2193 37.6444C64.6341 37.0523 64.2345 36.2959 64.0713 35.4715C63.9081 34.647 63.9886 33.7916 64.3026 33.0139C64.6166 32.2363 65.15 31.5714 65.8349 31.1039C66.5199 30.6364 67.3255 30.3872 68.1494 30.3881C68.6928 30.3832 69.2319 30.4882 69.7354 30.6971C70.2388 30.906 70.6968 31.2146 71.0828 31.6052C71.4688 31.9958 71.7752 32.4606 71.9842 32.9727C72.1933 33.4848 72.301 34.0342 72.3009 34.589Z" fill="#FFDE17"/>
|
|
44
|
+
<path d="M66.9224 39.163C66.9292 39.58 66.8108 39.9896 66.5822 40.3396C66.3535 40.6896 66.0251 40.9643 65.6386 41.1285C65.2521 41.2928 64.825 41.3394 64.4118 41.2622C63.9985 41.185 63.6177 40.9876 63.318 40.6952C63.0182 40.4027 62.8129 40.0284 62.7283 39.6199C62.6438 39.2114 62.6837 38.7872 62.843 38.4012C63.0023 38.0153 63.2738 37.685 63.6229 37.4526C63.9721 37.2202 64.383 37.096 64.8036 37.096C65.3607 37.0922 65.8966 37.3076 66.2938 37.6951C66.691 38.0826 66.917 38.6105 66.9224 39.163Z" fill="#E5802D"/>
|
|
45
|
+
<path d="M101.067 31.1329C101.088 32.5199 100.69 33.8817 99.9235 35.045C99.1571 36.2083 98.0571 37.1204 96.7633 37.6653C95.4696 38.2103 94.0406 38.3634 92.6584 38.1052C91.2761 37.847 90.003 37.1891 89.0011 36.2153C87.9992 35.2415 87.3137 33.9958 87.0319 32.6367C86.7502 31.2776 86.8849 29.8666 87.4189 28.5832C87.9528 27.2998 88.862 26.2021 90.0306 25.4297C91.1992 24.6574 92.5744 24.2453 93.9813 24.2459C94.9052 24.2393 95.8213 24.4122 96.6774 24.7547C97.5335 25.0973 98.3128 25.6028 98.9708 26.2423C99.6288 26.8818 100.153 27.6429 100.512 28.482C100.872 29.3212 101.061 30.2219 101.067 31.1329Z" fill="#097E40"/>
|
|
46
|
+
<path d="M44.2677 28.6955C44.9527 28.4205 45.6624 28.2084 46.3877 28.062C47.5738 27.8121 48.3742 27.8226 49.0268 28.0972C49.2982 28.1927 49.5401 28.3544 49.7294 28.567C49.9187 28.7795 50.0492 29.0358 50.1084 29.3115C50.2851 30.0753 49.8416 30.8637 48.9583 31.3529V31.3881C49.8705 31.3881 51.0314 31.7753 51.3018 32.9333C51.3758 33.2334 51.3762 33.5464 51.3029 33.8467C51.2296 34.147 51.0847 34.4262 50.88 34.6615C50.368 35.295 49.3909 35.7456 47.8911 36.0694C47.2784 36.2029 46.6585 36.3027 46.0344 36.3685L44.2677 28.6955ZM46.1966 31.638L47.2782 31.4128C48.5149 31.1488 49.1169 30.4237 48.9439 29.674C48.7312 28.7694 47.8443 28.5688 46.6473 28.8222C46.2953 28.8894 45.9502 28.9872 45.6161 29.1144L46.1966 31.638ZM47.0655 35.3584C47.4041 35.3246 47.7401 35.2694 48.0714 35.193C49.2936 34.9325 50.3355 34.3095 50.0688 33.1761C49.8236 32.1202 48.6266 31.8985 47.3503 32.173L46.3733 32.3807L47.0655 35.3584Z" fill="#ffffff"/>
|
|
47
|
+
<path d="M92.0473 31.7926L90.4007 34.1326L89.0071 33.8477L94.3635 26.4278L95.9712 26.7588L97.7268 35.6412L96.2904 35.3448L95.7454 32.5508L92.0473 31.7926ZM95.6637 31.6772L95.1459 29.1179C95.0471 28.5882 94.9756 28.0539 94.9318 27.5169H94.9007C94.6399 27.9595 94.3752 28.4329 94.0482 28.887L92.4911 31.0345L95.6637 31.6772Z" fill="#ffffff"/>
|
|
48
|
+
<path d="M52.0533 31.1618L51.3273 31.6953L51.1131 31.3373L52.0461 30.6677L52.5942 30.5496L53.4764 34.3772L52.8556 34.5097L52.0533 31.1618Z" fill="#ffffff"/>
|
|
49
|
+
</g>
|
|
50
|
+
<rect x="29.4472" y="21.1897" width="82.4483" height="81.7586" rx="11.5" stroke="#D9D9D9"/>
|
|
51
|
+
<defs>
|
|
52
|
+
<clipPath id="clip0_1432_2242">
|
|
53
|
+
<rect x="28.9472" y="20.6897" width="83.4483" height="82.7586" rx="12" fill="#ffffff"/>
|
|
54
|
+
</clipPath>
|
|
55
|
+
</defs>
|
|
56
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="126" height="92" viewBox="0 0 126 92" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="Group 2">
|
|
3
|
+
<path id="Wifi" fill-rule="evenodd" clip-rule="evenodd" d="M59.0032 24.8042C75.9789 24.8049 92.3055 31.0876 104.608 42.3538C105.535 43.2236 107.016 43.2126 107.928 42.3292L116.784 33.7204C117.246 33.2724 117.504 32.6654 117.5 32.0339C117.496 31.4024 117.231 30.7985 116.764 30.3556C84.4724 0.548124 33.5289 0.548124 1.23753 30.3556C0.76977 30.7981 0.504367 31.4019 0.500053 32.0334C0.49574 32.6649 0.752872 33.272 1.21455 33.7204L10.0731 42.3292C10.985 43.2139 12.4669 43.2249 13.3928 42.3538C25.6974 31.0869 42.0258 24.8042 59.0032 24.8042ZM58.9803 53.5595C68.2447 53.5589 77.1784 57.0457 84.0456 63.3423C84.9745 64.2359 86.4376 64.2166 87.343 63.2986L96.1293 54.3094C96.592 53.8379 96.8488 53.1983 96.8421 52.5336C96.8354 51.8689 96.5659 51.2347 96.0938 50.7728C75.1817 31.0757 42.7966 31.0757 21.8845 50.7728C21.4122 51.2347 21.1427 51.8692 21.1365 52.5341C21.1303 53.199 21.3879 53.8386 21.8516 54.3094L30.6353 63.2986C31.5408 64.2166 33.0039 64.2359 33.9327 63.3423C40.7954 57.0498 49.7221 53.5633 58.9803 53.5595ZM76.2107 72.5936C76.2238 73.3114 75.9709 74.0034 75.5115 74.5063L60.6548 91.2318C60.2192 91.7234 59.6255 92 59.0059 92C58.3864 92 57.7926 91.7234 57.3571 91.2318L42.4979 74.5063C42.0388 74.0031 41.7863 73.3108 41.7999 72.593C41.8135 71.8751 42.0921 71.1954 42.5698 70.7142C52.0578 61.7619 65.954 61.7619 75.4421 70.7142C75.9195 71.1958 76.1975 71.8757 76.2107 72.5936Z" fill="#000000"/>
|
|
4
|
+
<g id="Group 1">
|
|
5
|
+
<circle id="Ellipse 1" cx="111.5" cy="14" r="14" fill="#E00000"/>
|
|
6
|
+
<path id="Union" d="M117.205 8.29537C116.811 7.90153 116.172 7.90155 115.778 8.29537L111.5 12.5738L107.222 8.29537C106.828 7.90153 106.189 7.90155 105.795 8.29537C105.402 8.68919 105.402 9.32769 105.795 9.72153L110.074 14L105.795 18.2785C105.402 18.6723 105.402 19.3108 105.795 19.7046C106.189 20.0985 106.828 20.0984 107.222 19.7046L111.5 15.4262L115.778 19.7046C116.172 20.0985 116.811 20.0984 117.205 19.7046C117.598 19.3108 117.598 18.6723 117.205 18.2785L112.926 14L117.205 9.72153C117.598 9.32771 117.598 8.68921 117.205 8.29537Z" fill="#ffffff"/>
|
|
7
|
+
</g>
|
|
8
|
+
</g>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="179" height="179" viewBox="0 0 179 179" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="89.5" cy="89.5" r="89.5" fill="#D9D9D9"/>
|
|
3
|
+
<path d="M116.144 71.2426C118.487 68.8995 118.487 65.1005 116.144 62.7574C113.801 60.4142 110.002 60.4142 107.659 62.7574L89.4506 80.9654L71.2426 62.7574C68.8995 60.4142 65.1005 60.4142 62.7574 62.7574C60.4142 65.1005 60.4142 68.8995 62.7574 71.2426L80.9654 89.4506L62.7574 107.659C60.4142 110.002 60.4142 113.801 62.7574 116.144C65.1005 118.487 68.8995 118.487 71.2426 116.144L89.4506 97.9359L107.659 116.144C110.002 118.487 113.801 118.487 116.144 116.144C118.487 113.801 118.487 110.002 116.144 107.659L97.9359 89.4506L116.144 71.2426Z" fill="#747474"/>
|
|
4
|
+
</svg>
|
|
Binary file
|