@postal-music/icons 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4909 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +4744 -0
- package/dist/index.mjs.map +1 -0
- package/dist/index.native.js +4155 -0
- package/dist/index.native.js.map +1 -0
- package/dist/index.native.mjs +3959 -0
- package/dist/index.native.mjs.map +1 -0
- package/package.json +46 -0
- package/src/icons/_icon-props.ts +7 -0
- package/src/icons/actions/CheckIcon.native.tsx +27 -0
- package/src/icons/actions/CheckIcon.web.tsx +31 -0
- package/src/icons/actions/Copy02Icon.native.tsx +23 -0
- package/src/icons/actions/Copy02Icon.web.tsx +29 -0
- package/src/icons/actions/Copy06Icon.native.tsx +27 -0
- package/src/icons/actions/Copy06Icon.web.tsx +40 -0
- package/src/icons/actions/CopyIcon.native.tsx +23 -0
- package/src/icons/actions/CopyIcon.web.tsx +22 -0
- package/src/icons/actions/Expand01Icon.native.tsx +27 -0
- package/src/icons/actions/Expand01Icon.web.tsx +33 -0
- package/src/icons/actions/LogoutIcon.native.tsx +27 -0
- package/src/icons/actions/LogoutIcon.web.tsx +31 -0
- package/src/icons/actions/MinCircleIcon.native.tsx +29 -0
- package/src/icons/actions/MinCircleIcon.web.tsx +34 -0
- package/src/icons/actions/MinimiseIcon.native.tsx +27 -0
- package/src/icons/actions/MinimiseIcon.web.tsx +33 -0
- package/src/icons/actions/MinusIcon.native.tsx +22 -0
- package/src/icons/actions/MinusIcon.web.tsx +26 -0
- package/src/icons/actions/MoreOptionsIcon.native.tsx +49 -0
- package/src/icons/actions/MoreOptionsIcon.web.tsx +64 -0
- package/src/icons/actions/MoveIcon.native.tsx +32 -0
- package/src/icons/actions/MoveIcon.web.tsx +45 -0
- package/src/icons/actions/PencilIcon.native.tsx +23 -0
- package/src/icons/actions/PencilIcon.web.tsx +29 -0
- package/src/icons/actions/PlusCircleIcon.native.tsx +27 -0
- package/src/icons/actions/PlusCircleIcon.web.tsx +31 -0
- package/src/icons/actions/PlusIcon.native.tsx +23 -0
- package/src/icons/actions/PlusIcon.web.tsx +22 -0
- package/src/icons/actions/RefreshIcon.native.tsx +25 -0
- package/src/icons/actions/RefreshIcon.web.tsx +29 -0
- package/src/icons/actions/ResetIcon.native.tsx +25 -0
- package/src/icons/actions/ResetIcon.web.tsx +36 -0
- package/src/icons/actions/SettingsIcon.native.tsx +29 -0
- package/src/icons/actions/SettingsIcon.web.tsx +33 -0
- package/src/icons/actions/SlidersIcon.native.tsx +25 -0
- package/src/icons/actions/SlidersIcon.web.tsx +29 -0
- package/src/icons/actions/SmallMagnifyIcon.native.tsx +27 -0
- package/src/icons/actions/SmallMagnifyIcon.web.tsx +34 -0
- package/src/icons/actions/Trash02Icon.native.tsx +25 -0
- package/src/icons/actions/Trash02Icon.web.tsx +33 -0
- package/src/icons/actions/TrashIcon.native.tsx +22 -0
- package/src/icons/actions/TrashIcon.web.tsx +22 -0
- package/src/icons/actions/XIcon.native.tsx +23 -0
- package/src/icons/actions/XIcon.web.tsx +21 -0
- package/src/icons/actions/index.ts +22 -0
- package/src/icons/alerts/AlertTriangleIcon.native.tsx +32 -0
- package/src/icons/alerts/AlertTriangleIcon.web.tsx +49 -0
- package/src/icons/alerts/BellIcon.native.tsx +23 -0
- package/src/icons/alerts/BellIcon.web.tsx +27 -0
- package/src/icons/alerts/CheckCircleIcon.native.tsx +28 -0
- package/src/icons/alerts/CheckCircleIcon.web.tsx +44 -0
- package/src/icons/alerts/InfoCircleIcon.native.tsx +32 -0
- package/src/icons/alerts/InfoCircleIcon.web.tsx +40 -0
- package/src/icons/alerts/InfoIcon.native.tsx +30 -0
- package/src/icons/alerts/InfoIcon.web.tsx +34 -0
- package/src/icons/alerts/InfoSquareIcon.native.tsx +25 -0
- package/src/icons/alerts/InfoSquareIcon.web.tsx +31 -0
- package/src/icons/alerts/SlashCircleIcon.native.tsx +36 -0
- package/src/icons/alerts/SlashCircleIcon.web.tsx +47 -0
- package/src/icons/alerts/XCircleIcon.native.tsx +28 -0
- package/src/icons/alerts/XCircleIcon.web.tsx +50 -0
- package/src/icons/alerts/index.ts +8 -0
- package/src/icons/arrows/ArrowDownIcon.native.tsx +29 -0
- package/src/icons/arrows/ArrowDownIcon.web.tsx +31 -0
- package/src/icons/arrows/ArrowLeftIcon.native.tsx +32 -0
- package/src/icons/arrows/ArrowLeftIcon.web.tsx +31 -0
- package/src/icons/arrows/ArrowRightIcon.native.tsx +26 -0
- package/src/icons/arrows/ArrowRightIcon.web.tsx +31 -0
- package/src/icons/arrows/ArrowUp01Icon.native.tsx +30 -0
- package/src/icons/arrows/ArrowUp01Icon.web.tsx +53 -0
- package/src/icons/arrows/ArrowUpIcon.native.tsx +32 -0
- package/src/icons/arrows/ArrowUpIcon.web.tsx +29 -0
- package/src/icons/arrows/ChevronLeftIcon.native.tsx +32 -0
- package/src/icons/arrows/ChevronLeftIcon.web.tsx +31 -0
- package/src/icons/arrows/ChevronSelectorIcon.native.tsx +32 -0
- package/src/icons/arrows/ChevronSelectorIcon.web.tsx +33 -0
- package/src/icons/arrows/NarrowUpRightIcon.native.tsx +28 -0
- package/src/icons/arrows/NarrowUpRightIcon.web.tsx +29 -0
- package/src/icons/arrows/SwitchHorizontal02Icon.native.tsx +28 -0
- package/src/icons/arrows/SwitchHorizontal02Icon.web.tsx +39 -0
- package/src/icons/arrows/UTurnIcon.native.tsx +28 -0
- package/src/icons/arrows/UTurnIcon.web.tsx +32 -0
- package/src/icons/arrows/index.ts +10 -0
- package/src/icons/brand/InstagramWhiteIcon.native.tsx +39 -0
- package/src/icons/brand/InstagramWhiteIcon.web.tsx +79 -0
- package/src/icons/brand/PostalIcon.native.tsx +26 -0
- package/src/icons/brand/PostalIcon.web.tsx +29 -0
- package/src/icons/brand/index.ts +2 -0
- package/src/icons/charts/BarChart01Icon.native.tsx +25 -0
- package/src/icons/charts/BarChart01Icon.web.tsx +34 -0
- package/src/icons/charts/BarChart10Icon.native.tsx +23 -0
- package/src/icons/charts/BarChart10Icon.web.tsx +31 -0
- package/src/icons/charts/LineChart03UpIcon.native.tsx +23 -0
- package/src/icons/charts/LineChart03UpIcon.web.tsx +31 -0
- package/src/icons/charts/index.ts +3 -0
- package/src/icons/communication/AnnotationInfoIcon.native.tsx +30 -0
- package/src/icons/communication/AnnotationInfoIcon.web.tsx +38 -0
- package/src/icons/communication/ChatBubbleDotIcon.native.tsx +31 -0
- package/src/icons/communication/ChatBubbleDotIcon.web.tsx +31 -0
- package/src/icons/communication/ChatBubbleIcon.native.tsx +30 -0
- package/src/icons/communication/ChatBubbleIcon.web.tsx +37 -0
- package/src/icons/communication/MailIcon.native.tsx +36 -0
- package/src/icons/communication/MailIcon.web.tsx +37 -0
- package/src/icons/communication/MessageSquareTextIcon.native.tsx +30 -0
- package/src/icons/communication/MessageSquareTextIcon.web.tsx +41 -0
- package/src/icons/communication/MessageTextCircle01Icon.native.tsx +29 -0
- package/src/icons/communication/MessageTextCircle01Icon.web.tsx +32 -0
- package/src/icons/communication/NotificationTextIcon.native.tsx +21 -0
- package/src/icons/communication/NotificationTextIcon.web.tsx +24 -0
- package/src/icons/communication/SendIcon.native.tsx +28 -0
- package/src/icons/communication/SendIcon.web.tsx +33 -0
- package/src/icons/communication/index.ts +8 -0
- package/src/icons/files/CameraIcon.native.tsx +30 -0
- package/src/icons/files/CameraIcon.web.tsx +31 -0
- package/src/icons/files/Download02Icon.native.tsx +30 -0
- package/src/icons/files/Download02Icon.web.tsx +31 -0
- package/src/icons/files/Download03Icon.native.tsx +32 -0
- package/src/icons/files/Download03Icon.web.tsx +33 -0
- package/src/icons/files/Download04Icon.native.tsx +34 -0
- package/src/icons/files/Download04Icon.web.tsx +58 -0
- package/src/icons/files/DownloadCircleIcon.native.tsx +30 -0
- package/src/icons/files/DownloadCircleIcon.web.tsx +39 -0
- package/src/icons/files/DownloadIcon.native.tsx +28 -0
- package/src/icons/files/DownloadIcon.web.tsx +30 -0
- package/src/icons/files/File02Icon.native.tsx +28 -0
- package/src/icons/files/File02Icon.web.tsx +30 -0
- package/src/icons/files/FileDownload02Icon.native.tsx +30 -0
- package/src/icons/files/FileDownload02Icon.web.tsx +31 -0
- package/src/icons/files/FolderGradientIcon.native.tsx +43 -0
- package/src/icons/files/FolderGradientIcon.web.tsx +47 -0
- package/src/icons/files/FolderIcon.native.tsx +28 -0
- package/src/icons/files/FolderIcon.web.tsx +27 -0
- package/src/icons/files/FolderPlusIcon.native.tsx +34 -0
- package/src/icons/files/FolderPlusIcon.web.tsx +89 -0
- package/src/icons/files/Upload01Icon.native.tsx +32 -0
- package/src/icons/files/Upload01Icon.web.tsx +84 -0
- package/src/icons/files/UploadCloudIcon.native.tsx +27 -0
- package/src/icons/files/UploadCloudIcon.web.tsx +28 -0
- package/src/icons/files/UploadIcon.native.tsx +29 -0
- package/src/icons/files/UploadIcon.web.tsx +34 -0
- package/src/icons/files/index.ts +14 -0
- package/src/icons/finance/BankNote03Icon.native.tsx +35 -0
- package/src/icons/finance/BankNote03Icon.web.tsx +65 -0
- package/src/icons/finance/CoinsStacked03Icon.native.tsx +37 -0
- package/src/icons/finance/CoinsStacked03Icon.web.tsx +71 -0
- package/src/icons/finance/CreditCardIcon.native.tsx +22 -0
- package/src/icons/finance/CreditCardIcon.web.tsx +27 -0
- package/src/icons/finance/index.ts +3 -0
- package/src/icons/general/ActivityIcon.native.tsx +28 -0
- package/src/icons/general/ActivityIcon.web.tsx +38 -0
- package/src/icons/general/BookIcon.native.tsx +27 -0
- package/src/icons/general/BookIcon.web.tsx +26 -0
- package/src/icons/general/BookmarkIcon.native.tsx +32 -0
- package/src/icons/general/BookmarkIcon.web.tsx +36 -0
- package/src/icons/general/CollaborativeIcon.native.tsx +32 -0
- package/src/icons/general/CollaborativeIcon.web.tsx +31 -0
- package/src/icons/general/DataIcon.native.tsx +35 -0
- package/src/icons/general/DataIcon.web.tsx +51 -0
- package/src/icons/general/Dataflow03Icon.native.tsx +35 -0
- package/src/icons/general/Dataflow03Icon.web.tsx +53 -0
- package/src/icons/general/Datapoints01Icon.native.tsx +44 -0
- package/src/icons/general/Datapoints01Icon.web.tsx +44 -0
- package/src/icons/general/DropBoxIcon.native.tsx +42 -0
- package/src/icons/general/DropBoxIcon.web.tsx +55 -0
- package/src/icons/general/FaceSmileIcon.native.tsx +39 -0
- package/src/icons/general/FaceSmileIcon.web.tsx +65 -0
- package/src/icons/general/Flag01Icon.native.tsx +30 -0
- package/src/icons/general/Flag01Icon.web.tsx +32 -0
- package/src/icons/general/Globe02Icon.native.tsx +37 -0
- package/src/icons/general/Globe02Icon.web.tsx +38 -0
- package/src/icons/general/Globe05Icon.native.tsx +32 -0
- package/src/icons/general/Globe05Icon.web.tsx +36 -0
- package/src/icons/general/GlobeIcon.native.tsx +47 -0
- package/src/icons/general/GlobeIcon.web.tsx +48 -0
- package/src/icons/general/Hash02Icon.native.tsx +25 -0
- package/src/icons/general/Hash02Icon.web.tsx +24 -0
- package/src/icons/general/HeartIcon.native.tsx +35 -0
- package/src/icons/general/HeartIcon.web.tsx +38 -0
- package/src/icons/general/HelpIcon.native.tsx +35 -0
- package/src/icons/general/HelpIcon.web.tsx +33 -0
- package/src/icons/general/Image01Icon.native.tsx +24 -0
- package/src/icons/general/Image01Icon.web.tsx +26 -0
- package/src/icons/general/Image03Icon.native.tsx +40 -0
- package/src/icons/general/Image03Icon.web.tsx +51 -0
- package/src/icons/general/ImageIcon.native.tsx +34 -0
- package/src/icons/general/ImageIcon.web.tsx +39 -0
- package/src/icons/general/LandingCollaborativeIcon.native.tsx +27 -0
- package/src/icons/general/LandingCollaborativeIcon.web.tsx +26 -0
- package/src/icons/general/LandingControlsIcon.native.tsx +27 -0
- package/src/icons/general/LandingControlsIcon.web.tsx +26 -0
- package/src/icons/general/LandingMusicIcon.native.tsx +32 -0
- package/src/icons/general/LandingMusicIcon.web.tsx +31 -0
- package/src/icons/general/LandingShareIcon.native.tsx +27 -0
- package/src/icons/general/LandingShareIcon.web.tsx +26 -0
- package/src/icons/general/LandingUploadIcon.native.tsx +27 -0
- package/src/icons/general/LandingUploadIcon.web.tsx +26 -0
- package/src/icons/general/LayersThree01Icon.native.tsx +28 -0
- package/src/icons/general/LayersThree01Icon.web.tsx +31 -0
- package/src/icons/general/LyricsIcon.native.tsx +40 -0
- package/src/icons/general/LyricsIcon.web.tsx +41 -0
- package/src/icons/general/MoonIcon.native.tsx +34 -0
- package/src/icons/general/MoonIcon.web.tsx +33 -0
- package/src/icons/general/MusicNoteIcon.native.tsx +32 -0
- package/src/icons/general/MusicNoteIcon.web.tsx +35 -0
- package/src/icons/general/PinIcon.native.tsx +37 -0
- package/src/icons/general/PinIcon.web.tsx +49 -0
- package/src/icons/general/QuestionCircleIcon.native.tsx +34 -0
- package/src/icons/general/QuestionCircleIcon.web.tsx +33 -0
- package/src/icons/general/Recordering01.native.tsx +28 -0
- package/src/icons/general/Recordering01.web.tsx +39 -0
- package/src/icons/general/Share01Icon.native.tsx +30 -0
- package/src/icons/general/Share01Icon.web.tsx +32 -0
- package/src/icons/general/ShareIcon.native.tsx +28 -0
- package/src/icons/general/ShareIcon.web.tsx +33 -0
- package/src/icons/general/StarIcon.native.tsx +36 -0
- package/src/icons/general/StarIcon.web.tsx +30 -0
- package/src/icons/general/Stars01Icon.native.tsx +56 -0
- package/src/icons/general/Stars01Icon.web.tsx +66 -0
- package/src/icons/general/Stars02Icon.native.tsx +40 -0
- package/src/icons/general/Stars02Icon.web.tsx +66 -0
- package/src/icons/general/Stars04Icon.native.tsx +37 -0
- package/src/icons/general/Stars04Icon.web.tsx +39 -0
- package/src/icons/general/Stars06Icon.native.tsx +37 -0
- package/src/icons/general/Stars06Icon.web.tsx +38 -0
- package/src/icons/general/TagsIcon.native.tsx +26 -0
- package/src/icons/general/TagsIcon.web.tsx +29 -0
- package/src/icons/general/ThumbsDownIcon.native.tsx +28 -0
- package/src/icons/general/ThumbsDownIcon.web.tsx +37 -0
- package/src/icons/general/Type01Icon.native.tsx +34 -0
- package/src/icons/general/Type01Icon.web.tsx +33 -0
- package/src/icons/general/index.ts +41 -0
- package/src/icons/index.ts +15 -0
- package/src/icons/media/10SecondsBackIcon.native.tsx +37 -0
- package/src/icons/media/10SecondsBackIcon.web.tsx +41 -0
- package/src/icons/media/EqualizerIcon.native.tsx +25 -0
- package/src/icons/media/EqualizerIcon.web.tsx +31 -0
- package/src/icons/media/HeadPhonesIcon.native.tsx +35 -0
- package/src/icons/media/HeadPhonesIcon.web.tsx +39 -0
- package/src/icons/media/MediaUploadIcon.native.tsx +39 -0
- package/src/icons/media/MediaUploadIcon.web.tsx +43 -0
- package/src/icons/media/NextTrackIcon.native.tsx +30 -0
- package/src/icons/media/NextTrackIcon.web.tsx +39 -0
- package/src/icons/media/PauseIcon.native.tsx +34 -0
- package/src/icons/media/PauseIcon.web.tsx +35 -0
- package/src/icons/media/PlayIcon.native.tsx +29 -0
- package/src/icons/media/PlayIcon.web.tsx +28 -0
- package/src/icons/media/PlaySquareIcon.native.tsx +38 -0
- package/src/icons/media/PlaySquareIcon.web.tsx +47 -0
- package/src/icons/media/PreviousTrackIcon.native.tsx +30 -0
- package/src/icons/media/PreviousTrackIcon.web.tsx +40 -0
- package/src/icons/media/Repeat01Icon.native.tsx +29 -0
- package/src/icons/media/Repeat01Icon.web.tsx +32 -0
- package/src/icons/media/Repeat02Icon.native.tsx +28 -0
- package/src/icons/media/Repeat02Icon.web.tsx +33 -0
- package/src/icons/media/Repeat03Icon.native.tsx +37 -0
- package/src/icons/media/Repeat03Icon.web.tsx +41 -0
- package/src/icons/media/Shuffle01Icon.native.tsx +34 -0
- package/src/icons/media/Shuffle01Icon.web.tsx +74 -0
- package/src/icons/media/TenSecondsForwardIcon.native.tsx +33 -0
- package/src/icons/media/TenSecondsForwardIcon.web.tsx +37 -0
- package/src/icons/media/VideoRecorderIcon.native.tsx +37 -0
- package/src/icons/media/VideoRecorderIcon.web.tsx +36 -0
- package/src/icons/media/VolumeIcon.native.tsx +26 -0
- package/src/icons/media/VolumeIcon.web.tsx +30 -0
- package/src/icons/media/VolumeMaxIcon.native.tsx +27 -0
- package/src/icons/media/VolumeMaxIcon.web.tsx +36 -0
- package/src/icons/media/index.ts +17 -0
- package/src/icons/navigation/AlignLeftIcon.native.tsx +21 -0
- package/src/icons/navigation/AlignLeftIcon.web.tsx +31 -0
- package/src/icons/navigation/DotgridIcon.native.tsx +40 -0
- package/src/icons/navigation/DotgridIcon.web.tsx +51 -0
- package/src/icons/navigation/FilterIcon.native.tsx +22 -0
- package/src/icons/navigation/FilterIcon.web.tsx +26 -0
- package/src/icons/navigation/Grid01Icon.native.tsx +42 -0
- package/src/icons/navigation/Grid01Icon.web.tsx +52 -0
- package/src/icons/navigation/GridIcon.native.tsx +47 -0
- package/src/icons/navigation/GridIcon.web.tsx +58 -0
- package/src/icons/navigation/HomeIcon.native.tsx +30 -0
- package/src/icons/navigation/HomeIcon.web.tsx +54 -0
- package/src/icons/navigation/ListIcon.native.tsx +25 -0
- package/src/icons/navigation/ListIcon.web.tsx +32 -0
- package/src/icons/navigation/MenuIcon.native.tsx +24 -0
- package/src/icons/navigation/MenuIcon.web.tsx +29 -0
- package/src/icons/navigation/Rows01Icon.native.tsx +29 -0
- package/src/icons/navigation/Rows01Icon.web.tsx +37 -0
- package/src/icons/navigation/Rows03Icon.native.tsx +27 -0
- package/src/icons/navigation/Rows03Icon.web.tsx +36 -0
- package/src/icons/navigation/SearchIcon.native.tsx +23 -0
- package/src/icons/navigation/SearchIcon.web.tsx +27 -0
- package/src/icons/navigation/SidebarMenuIcon.native.tsx +22 -0
- package/src/icons/navigation/SidebarMenuIcon.web.tsx +26 -0
- package/src/icons/navigation/SortIcon.native.tsx +21 -0
- package/src/icons/navigation/SortIcon.web.tsx +32 -0
- package/src/icons/navigation/index.ts +13 -0
- package/src/icons/security/EyeIcon.native.tsx +29 -0
- package/src/icons/security/EyeIcon.web.tsx +39 -0
- package/src/icons/security/Lock03Icon.native.tsx +25 -0
- package/src/icons/security/Lock03Icon.web.tsx +31 -0
- package/src/icons/security/LockIcon.native.tsx +22 -0
- package/src/icons/security/LockIcon.web.tsx +26 -0
- package/src/icons/security/LockUnlocked03Icon.native.tsx +25 -0
- package/src/icons/security/LockUnlocked03Icon.web.tsx +31 -0
- package/src/icons/security/PasswordInputIcon.native.tsx +20 -0
- package/src/icons/security/PasswordInputIcon.web.tsx +30 -0
- package/src/icons/security/index.ts +5 -0
- package/src/icons/social/AppleMusicIcon.native.tsx +44 -0
- package/src/icons/social/AppleMusicIcon.web.tsx +50 -0
- package/src/icons/social/AudiomackIcon.native.tsx +36 -0
- package/src/icons/social/AudiomackIcon.web.tsx +45 -0
- package/src/icons/social/InstagramShortsIcon.native.tsx +38 -0
- package/src/icons/social/InstagramShortsIcon.web.tsx +47 -0
- package/src/icons/social/ShazamIcon.native.tsx +33 -0
- package/src/icons/social/ShazamIcon.web.tsx +42 -0
- package/src/icons/social/SoundCloudIcon.native.tsx +29 -0
- package/src/icons/social/SoundCloudIcon.web.tsx +38 -0
- package/src/icons/social/SpotifyIcon.native.tsx +31 -0
- package/src/icons/social/SpotifyIcon.web.tsx +38 -0
- package/src/icons/social/TiktokIcon.native.tsx +38 -0
- package/src/icons/social/TiktokIcon.web.tsx +47 -0
- package/src/icons/social/YoutubeIcon.native.tsx +26 -0
- package/src/icons/social/YoutubeIcon.web.tsx +35 -0
- package/src/icons/social/YoutubeReelsIcon.native.tsx +25 -0
- package/src/icons/social/YoutubeReelsIcon.web.tsx +34 -0
- package/src/icons/social/index.ts +9 -0
- package/src/icons/time/CalendarIcon.native.tsx +32 -0
- package/src/icons/time/CalendarIcon.web.tsx +35 -0
- package/src/icons/time/ClockIcon.native.tsx +30 -0
- package/src/icons/time/ClockIcon.web.tsx +49 -0
- package/src/icons/time/index.ts +2 -0
- package/src/icons/users/AccountIcon.native.tsx +34 -0
- package/src/icons/users/AccountIcon.web.tsx +33 -0
- package/src/icons/users/UserApproveIcon.native.tsx +27 -0
- package/src/icons/users/UserApproveIcon.web.tsx +26 -0
- package/src/icons/users/UserIcon.native.tsx +34 -0
- package/src/icons/users/UserIcon.web.tsx +33 -0
- package/src/icons/users/UserPlusIcon.native.tsx +38 -0
- package/src/icons/users/UserPlusIcon.web.tsx +42 -0
- package/src/icons/users/UserXIcon.native.tsx +33 -0
- package/src/icons/users/UserXIcon.web.tsx +38 -0
- package/src/icons/users/Users03Icon.native.tsx +29 -0
- package/src/icons/users/Users03Icon.web.tsx +31 -0
- package/src/icons/users/UsersIcon.native.tsx +28 -0
- package/src/icons/users/UsersIcon.web.tsx +27 -0
- package/src/icons/users/UsersPlusIcon.native.tsx +27 -0
- package/src/icons/users/UsersPlusIcon.web.tsx +31 -0
- package/src/icons/users/index.ts +8 -0
- package/src/index.ts +2 -0
- package/src/tokens/colors.ts +55 -0
- package/src/tokens/index.ts +4 -0
- package/src/tokens/radius.ts +16 -0
- package/src/tokens/spacing.ts +27 -0
- package/src/tokens/typography.ts +42 -0
- package/src/utils/cn.ts +3 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// components/icons/UploadIcon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
|
|
4
|
+
interface UploadIconProps extends React.SVGProps<SVGSVGElement> {
|
|
5
|
+
/** Width and height (in pixels). Defaults to 17. */
|
|
6
|
+
size?: number;
|
|
7
|
+
/** Stroke color. Defaults to currentColor so it inherits from text color. */
|
|
8
|
+
strokeColor?: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const UploadIcon: React.FC<UploadIconProps> = ({
|
|
12
|
+
size = 17,
|
|
13
|
+
strokeColor = "currentColor",
|
|
14
|
+
className = "",
|
|
15
|
+
...props
|
|
16
|
+
}) => (
|
|
17
|
+
<svg
|
|
18
|
+
width={size}
|
|
19
|
+
height={size}
|
|
20
|
+
viewBox="0 0 17 17"
|
|
21
|
+
fill="none"
|
|
22
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
23
|
+
className={className}
|
|
24
|
+
{...props}
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="M14.875 10.625V11.475C14.875 12.6651 14.875 13.2602 14.6434 13.7147C14.4397 14.1146 14.1146 14.4397 13.7147 14.6434C13.2602 14.875 12.6651 14.875 11.475 14.875H5.525C4.33489 14.875 3.73983 14.875 3.28527 14.6434C2.88543 14.4397 2.56034 14.1146 2.35661 13.7147C2.125 13.2602 2.125 12.6651 2.125 11.475V10.625M12.0417 5.66667L8.5 2.125M8.5 2.125L4.95833 5.66667M8.5 2.125V10.625"
|
|
28
|
+
stroke={strokeColor}
|
|
29
|
+
strokeWidth={1.5}
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
</svg>
|
|
34
|
+
);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export { default as CameraIcon } from './CameraIcon';
|
|
2
|
+
export { default as Download02Icon } from './Download02Icon';
|
|
3
|
+
export { default as Download03Icon } from './Download03Icon';
|
|
4
|
+
export { default as Download04Icon } from './Download04Icon';
|
|
5
|
+
export { default as DownloadCircleIcon } from './DownloadCircleIcon';
|
|
6
|
+
export { default as DownloadIcon } from './DownloadIcon';
|
|
7
|
+
export { default as File02Icon } from './File02Icon';
|
|
8
|
+
export { default as FileDownload02Icon } from './FileDownload02Icon';
|
|
9
|
+
export { default as FolderGradientIcon } from './FolderGradientIcon';
|
|
10
|
+
export { default as FolderIcon } from './FolderIcon';
|
|
11
|
+
export { default as FolderPlusIcon } from './FolderPlusIcon';
|
|
12
|
+
export { default as Upload01Icon } from './Upload01Icon';
|
|
13
|
+
export { default as UploadCloudIcon } from './UploadCloudIcon';
|
|
14
|
+
export { default as UploadIcon } from './UploadIcon';
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type BankNote03IconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
onClick?: () => void;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const BankNote03Icon = ({
|
|
11
|
+
size = 20,
|
|
12
|
+
strokeWidth = 1.5,
|
|
13
|
+
onClick,
|
|
14
|
+
}: BankNote03IconProps) => {
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
width={size}
|
|
18
|
+
height={size}
|
|
19
|
+
viewBox="0 0 20 20"
|
|
20
|
+
fill="none"
|
|
21
|
+
onPress={onClick}
|
|
22
|
+
>
|
|
23
|
+
<Path
|
|
24
|
+
d="M11.667 7.49984H9.58366C8.8933 7.49984 8.33366 8.05948 8.33366 8.74984C8.33366 9.44019 8.8933 9.99984 9.58366 9.99984H10.417C11.1073 9.99984 11.667 10.5595 11.667 11.2498C11.667 11.9402 11.1073 12.4998 10.417 12.4998H8.33366M10.0003 6.6665V7.49984M10.0003 12.4998V13.3332M15.0003 9.99984H15.0087M5.00033 9.99984H5.00866M1.66699 6.83317L1.66699 13.1665C1.66699 14.0999 1.66699 14.5666 1.84865 14.9232C2.00844 15.2368 2.2634 15.4917 2.57701 15.6515C2.93353 15.8332 3.40024 15.8332 4.33366 15.8332L15.667 15.8332C16.6004 15.8332 17.0671 15.8332 17.4236 15.6515C17.7372 15.4917 17.9922 15.2368 18.152 14.9232C18.3337 14.5666 18.3337 14.0999 18.3337 13.1665V6.83317C18.3337 5.89975 18.3337 5.43304 18.152 5.07652C17.9922 4.76292 17.7372 4.50795 17.4236 4.34816C17.0671 4.16651 16.6004 4.16651 15.667 4.1665L4.33366 4.1665C3.40024 4.1665 2.93353 4.1665 2.57701 4.34816C2.2634 4.50795 2.00844 4.76292 1.84865 5.07652C1.66699 5.43304 1.66699 5.89975 1.66699 6.83317ZM15.417 9.99984C15.417 10.23 15.2304 10.4165 15.0003 10.4165C14.7702 10.4165 14.5837 10.23 14.5837 9.99984C14.5837 9.76972 14.7702 9.58317 15.0003 9.58317C15.2304 9.58317 15.417 9.76972 15.417 9.99984ZM5.41699 9.99984C5.41699 10.23 5.23044 10.4165 5.00033 10.4165C4.77021 10.4165 4.58366 10.23 4.58366 9.99984C4.58366 9.76972 4.77021 9.58317 5.00033 9.58317C5.23044 9.58317 5.41699 9.76972 5.41699 9.99984Z"
|
|
25
|
+
stroke="currentColor"
|
|
26
|
+
strokeWidth={strokeWidth}
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
/>
|
|
30
|
+
</Svg>
|
|
31
|
+
);
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export { BankNote03Icon };
|
|
35
|
+
export default BankNote03Icon;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import { cn } from "../../utils/cn";
|
|
5
|
+
|
|
6
|
+
type SvgProps = React.SVGProps<SVGSVGElement> & {
|
|
7
|
+
size?: number | string;
|
|
8
|
+
strokeWidth?: number;
|
|
9
|
+
ariaLabel?: string;
|
|
10
|
+
title?: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
const handleKeyDown: React.KeyboardEventHandler<SVGSVGElement> = (e) => {
|
|
14
|
+
const isEnter = e.key === "Enter";
|
|
15
|
+
const isSpace = e.key === " ";
|
|
16
|
+
if (!isEnter && !isSpace) return;
|
|
17
|
+
e.preventDefault();
|
|
18
|
+
(e.currentTarget as unknown as { click?: () => void })?.click?.();
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const Banknote03Icon = React.memo(
|
|
22
|
+
React.forwardRef<SVGSVGElement, SvgProps>(function Banknote03Icon(
|
|
23
|
+
{
|
|
24
|
+
size = 20,
|
|
25
|
+
strokeWidth = 1.5,
|
|
26
|
+
className,
|
|
27
|
+
ariaLabel,
|
|
28
|
+
title,
|
|
29
|
+
onClick,
|
|
30
|
+
...rest
|
|
31
|
+
},
|
|
32
|
+
ref,
|
|
33
|
+
) {
|
|
34
|
+
const interactive = typeof onClick === "function";
|
|
35
|
+
|
|
36
|
+
return (
|
|
37
|
+
<svg
|
|
38
|
+
ref={ref}
|
|
39
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
40
|
+
viewBox="0 0 20 20"
|
|
41
|
+
width={size}
|
|
42
|
+
height={size}
|
|
43
|
+
role="img"
|
|
44
|
+
aria-hidden={interactive ? undefined : true}
|
|
45
|
+
aria-label={interactive ? (ariaLabel ?? "banknote icon") : undefined}
|
|
46
|
+
tabIndex={interactive ? 0 : -1}
|
|
47
|
+
onKeyDown={interactive ? handleKeyDown : undefined}
|
|
48
|
+
onClick={onClick}
|
|
49
|
+
className={cn("fill-none stroke-current", className)}
|
|
50
|
+
{...rest}
|
|
51
|
+
>
|
|
52
|
+
{title ? <title>{title}</title> : null}
|
|
53
|
+
<path
|
|
54
|
+
d="M11.667 7.49984H9.58366C8.8933 7.49984 8.33366 8.05948 8.33366 8.74984C8.33366 9.44019 8.8933 9.99984 9.58366 9.99984H10.417C11.1073 9.99984 11.667 10.5595 11.667 11.2498C11.667 11.9402 11.1073 12.4998 10.417 12.4998H8.33366M10.0003 6.6665V7.49984M10.0003 12.4998V13.3332M15.0003 9.99984H15.0087M5.00033 9.99984H5.00866M1.66699 6.83317L1.66699 13.1665C1.66699 14.0999 1.66699 14.5666 1.84865 14.9232C2.00844 15.2368 2.2634 15.4917 2.57701 15.6515C2.93353 15.8332 3.40024 15.8332 4.33366 15.8332L15.667 15.8332C16.6004 15.8332 17.0671 15.8332 17.4236 15.6515C17.7372 15.4917 17.9922 15.2368 18.152 14.9232C18.3337 14.5666 18.3337 14.0999 18.3337 13.1665V6.83317C18.3337 5.89975 18.3337 5.43304 18.152 5.07652C17.9922 4.76292 17.7372 4.50795 17.4236 4.34816C17.0671 4.16651 16.6004 4.16651 15.667 4.1665L4.33366 4.1665C3.40024 4.1665 2.93353 4.1665 2.57701 4.34816C2.2634 4.50795 2.00844 4.76292 1.84865 5.07652C1.66699 5.43304 1.66699 5.89975 1.66699 6.83317ZM15.417 9.99984C15.417 10.23 15.2304 10.4165 15.0003 10.4165C14.7702 10.4165 14.5837 10.23 14.5837 9.99984C14.5837 9.76972 14.7702 9.58317 15.0003 9.58317C15.2304 9.58317 15.417 9.76972 15.417 9.99984ZM5.41699 9.99984C5.41699 10.23 5.23044 10.4165 5.00033 10.4165C4.77021 10.4165 4.58366 10.23 4.58366 9.99984C4.58366 9.76972 4.77021 9.58317 5.00033 9.58317C5.23044 9.58317 5.41699 9.76972 5.41699 9.99984Z"
|
|
55
|
+
stroke="currentColor"
|
|
56
|
+
strokeWidth={strokeWidth}
|
|
57
|
+
strokeLinecap="round"
|
|
58
|
+
strokeLinejoin="round"
|
|
59
|
+
/>
|
|
60
|
+
</svg>
|
|
61
|
+
);
|
|
62
|
+
}),
|
|
63
|
+
);
|
|
64
|
+
|
|
65
|
+
export default Banknote03Icon;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type CoinsStacked03IconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
stroke?: string;
|
|
8
|
+
onClick?: () => void;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
const CoinsStacked03Icon = ({
|
|
12
|
+
size = 20,
|
|
13
|
+
strokeWidth = 1.5,
|
|
14
|
+
stroke = '#000000',
|
|
15
|
+
onClick,
|
|
16
|
+
}: CoinsStacked03IconProps) => {
|
|
17
|
+
return (
|
|
18
|
+
<Svg
|
|
19
|
+
width={size}
|
|
20
|
+
height={size}
|
|
21
|
+
viewBox="0 0 20 20"
|
|
22
|
+
fill="none"
|
|
23
|
+
stroke={stroke}
|
|
24
|
+
strokeWidth={strokeWidth}
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
onPress={onClick}
|
|
28
|
+
>
|
|
29
|
+
<Path d="M10.8337 4.16667C10.8337 5.08714 8.78163 5.83333 6.25033 5.83333C3.71902 5.83333 1.66699 5.08714 1.66699 4.16667M10.8337 4.16667C10.8337 3.24619 8.78163 2.5 6.25033 2.5C3.71902 2.5 1.66699 3.24619 1.66699 4.16667M10.8337 4.16667V5.41667M1.66699 4.16667V14.1667C1.66699 15.0871 3.71902 15.8333 6.25033 15.8333M6.25033 9.16667C6.10987 9.16667 5.97089 9.16437 5.83366 9.15987C3.49762 9.08332 1.66699 8.3694 1.66699 7.5M6.25033 12.5C3.71902 12.5 1.66699 11.7538 1.66699 10.8333M18.3337 9.58333C18.3337 10.5038 16.2816 11.25 13.7503 11.25C11.219 11.25 9.16699 10.5038 9.16699 9.58333M18.3337 9.58333C18.3337 8.66286 16.2816 7.91667 13.7503 7.91667C11.219 7.91667 9.16699 8.66286 9.16699 9.58333M18.3337 9.58333V15.8333C18.3337 16.7538 16.2816 17.5 13.7503 17.5C11.219 17.5 9.16699 16.7538 9.16699 15.8333V9.58333M18.3337 12.7083C18.3337 13.6288 16.2816 14.375 13.7503 14.375C11.219 14.375 9.16699 13.6288 9.16699 12.7083" />
|
|
30
|
+
</Svg>
|
|
31
|
+
);
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
CoinsStacked03Icon.displayName = 'CoinsStacked03Icon';
|
|
35
|
+
|
|
36
|
+
export { CoinsStacked03Icon };
|
|
37
|
+
export default CoinsStacked03Icon;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
// CoinsStacked03Icon.tsx
|
|
2
|
+
"use client";
|
|
3
|
+
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
|
|
6
|
+
type CoinsStacked03IconProps = {
|
|
7
|
+
size?: number | string;
|
|
8
|
+
strokeWidth?: number;
|
|
9
|
+
stroke?: string;
|
|
10
|
+
className?: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
onClick?: () => void;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
const CoinsStacked03Icon = React.forwardRef<
|
|
16
|
+
SVGSVGElement,
|
|
17
|
+
CoinsStacked03IconProps
|
|
18
|
+
>(
|
|
19
|
+
(
|
|
20
|
+
{
|
|
21
|
+
size = 20,
|
|
22
|
+
strokeWidth = 1.5,
|
|
23
|
+
stroke = "currentColor",
|
|
24
|
+
className,
|
|
25
|
+
title,
|
|
26
|
+
onClick,
|
|
27
|
+
},
|
|
28
|
+
ref,
|
|
29
|
+
) => {
|
|
30
|
+
const isInteractive = Boolean(onClick);
|
|
31
|
+
|
|
32
|
+
const handleKeyDown: React.KeyboardEventHandler<SVGSVGElement> = (
|
|
33
|
+
event,
|
|
34
|
+
) => {
|
|
35
|
+
if (!isInteractive) return;
|
|
36
|
+
if (event.key === "Enter" || event.key === " ") {
|
|
37
|
+
event.preventDefault();
|
|
38
|
+
onClick?.();
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<svg
|
|
44
|
+
ref={ref}
|
|
45
|
+
width={size}
|
|
46
|
+
height={size}
|
|
47
|
+
viewBox="0 0 20 20"
|
|
48
|
+
fill="none"
|
|
49
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
50
|
+
className={className}
|
|
51
|
+
stroke={stroke}
|
|
52
|
+
strokeWidth={strokeWidth}
|
|
53
|
+
strokeLinecap="round"
|
|
54
|
+
strokeLinejoin="round"
|
|
55
|
+
role="img"
|
|
56
|
+
tabIndex={isInteractive ? 0 : undefined}
|
|
57
|
+
aria-label={isInteractive ? title || "coins stacked icon" : undefined}
|
|
58
|
+
aria-hidden={isInteractive ? undefined : title ? undefined : true}
|
|
59
|
+
onClick={onClick}
|
|
60
|
+
onKeyDown={handleKeyDown}
|
|
61
|
+
>
|
|
62
|
+
{title ? <title>{title}</title> : null}
|
|
63
|
+
<path d="M10.8337 4.16667C10.8337 5.08714 8.78163 5.83333 6.25033 5.83333C3.71902 5.83333 1.66699 5.08714 1.66699 4.16667M10.8337 4.16667C10.8337 3.24619 8.78163 2.5 6.25033 2.5C3.71902 2.5 1.66699 3.24619 1.66699 4.16667M10.8337 4.16667V5.41667M1.66699 4.16667V14.1667C1.66699 15.0871 3.71902 15.8333 6.25033 15.8333M6.25033 9.16667C6.10987 9.16667 5.97089 9.16437 5.83366 9.15987C3.49762 9.08332 1.66699 8.3694 1.66699 7.5M6.25033 12.5C3.71902 12.5 1.66699 11.7538 1.66699 10.8333M18.3337 9.58333C18.3337 10.5038 16.2816 11.25 13.7503 11.25C11.219 11.25 9.16699 10.5038 9.16699 9.58333M18.3337 9.58333C18.3337 8.66286 16.2816 7.91667 13.7503 7.91667C11.219 7.91667 9.16699 8.66286 9.16699 9.58333M18.3337 9.58333V15.8333C18.3337 16.7538 16.2816 17.5 13.7503 17.5C11.219 17.5 9.16699 16.7538 9.16699 15.8333V9.58333M18.3337 12.7083C18.3337 13.6288 16.2816 14.375 13.7503 14.375C11.219 14.375 9.16699 13.6288 9.16699 12.7083" />
|
|
64
|
+
</svg>
|
|
65
|
+
);
|
|
66
|
+
},
|
|
67
|
+
);
|
|
68
|
+
|
|
69
|
+
CoinsStacked03Icon.displayName = "CoinsStacked03Icon";
|
|
70
|
+
|
|
71
|
+
export default CoinsStacked03Icon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface CreditCardIconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const CreditCardIcon: React.FC<CreditCardIconProps> = ({ size = 18, color = '#000000' }) => (
|
|
10
|
+
<Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
|
|
11
|
+
<Path
|
|
12
|
+
d="M16.5 7.5H1.5M1.5 6.15L1.5 11.85C1.5 12.6901 1.5 13.1101 1.66349 13.431C1.8073 13.7132 2.03677 13.9427 2.31901 14.0865C2.63988 14.25 3.05992 14.25 3.9 14.25L14.1 14.25C14.9401 14.25 15.3601 14.25 15.681 14.0865C15.9632 13.9427 16.1927 13.7132 16.3365 13.431C16.5 13.1101 16.5 12.6901 16.5 11.85V6.15C16.5 5.30992 16.5 4.88988 16.3365 4.56902C16.1927 4.28677 15.9632 4.0573 15.681 3.91349C15.3601 3.75 14.9401 3.75 14.1 3.75L3.9 3.75C3.05992 3.75 2.63988 3.75 2.31901 3.91349C2.03677 4.0573 1.8073 4.28677 1.66349 4.56901C1.5 4.88988 1.5 5.30992 1.5 6.15Z"
|
|
13
|
+
stroke={color}
|
|
14
|
+
strokeWidth="1.5"
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export { CreditCardIcon };
|
|
22
|
+
export default CreditCardIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const CreditCardIcon: React.FC<IconProps> = ({ size = 18, color = "currentColor" }) => (
|
|
9
|
+
<svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 18 18"
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
d="M16.5 7.5H1.5
|
|
18
|
+
M1.5 6.15L1.5 11.85C1.5 12.6901 1.5 13.1101 1.66349 13.431C1.8073 13.7132 2.03677 13.9427 2.31901 14.0865C2.63988 14.25 3.05992 14.25 3.9 14.25L14.1 14.25C14.9401 14.25 15.3601 14.25 15.681 14.0865C15.9632 13.9427 16.1927 13.7132 16.3365 13.431C16.5 13.1101 16.5 12.6901 16.5 11.85V6.15C16.5 5.30992 16.5 4.88988 16.3365 4.56902C16.1927 4.28677 15.9632 4.0573 15.681 3.91349C15.3601 3.75 14.9401 3.75 14.1 3.75L3.9 3.75C3.05992 3.75 2.63988 3.75 2.31901 3.91349C2.03677 4.0573 1.8073 4.28677 1.66349 4.56901C1.5 4.88988 1.5 5.30992 1.5 6.15Z"
|
|
19
|
+
stroke={color}
|
|
20
|
+
strokeWidth="1.5"
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
export default CreditCardIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface ActivityIconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const ActivityIcon: React.FC<ActivityIconProps> = ({ size = 18 }) => {
|
|
9
|
+
return (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 18 18"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
d="M16.5 9H13.5L11.25 15.75L6.75 2.25L4.5 9H1.5"
|
|
18
|
+
stroke="currentColor"
|
|
19
|
+
strokeWidth={1.5}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export { ActivityIcon };
|
|
28
|
+
export default ActivityIcon;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
interface ActivityIconProps extends SVGProps<SVGSVGElement> {
|
|
5
|
+
/**
|
|
6
|
+
* Size of the icon (width and height). Default is 18.
|
|
7
|
+
*/
|
|
8
|
+
size?: number;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* A reusable "Activity" icon component.
|
|
13
|
+
*
|
|
14
|
+
* @param size - width and height of the SVG in pixels.
|
|
15
|
+
* @param props - additional SVG props such as className or style.
|
|
16
|
+
*/
|
|
17
|
+
const ActivityIcon: React.FC<ActivityIconProps> = ({ size = 18, ...props }) => {
|
|
18
|
+
return (
|
|
19
|
+
<svg
|
|
20
|
+
width={size}
|
|
21
|
+
height={size}
|
|
22
|
+
viewBox="0 0 18 18"
|
|
23
|
+
fill="none"
|
|
24
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
25
|
+
{...props}
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
d="M16.5 9H13.5L11.25 15.75L6.75 2.25L4.5 9H1.5"
|
|
29
|
+
stroke="currentColor"
|
|
30
|
+
strokeWidth={1.5}
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
/>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export default ActivityIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const BookIcon: React.FC<IconProps> = ({ size = 18, color = '#000000' }) => (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 18 18"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
d="M15 14.25V12H5.25C4.00736 12 3 13.0074 3 14.25M6.6 16.5H12.6C13.4401 16.5 13.8601 16.5 14.181 16.3365C14.4632 16.1927 14.6927 15.9632 14.8365 15.681C15 15.3601 15 14.9401 15 14.1V3.9C15 3.05992 15 2.63988 14.8365 2.31901C14.6927 2.03677 14.4632 1.8073 14.181 1.66349C13.8601 1.5 13.4401 1.5 12.6 1.5H6.6C5.33988 1.5 4.70982 1.5 4.22852 1.74524C3.80516 1.96095 3.46095 2.30516 3.24524 2.72852C3 3.20982 3 3.83988 3 5.1V12.9C3 14.1601 3 14.7902 3.24524 15.2715C3.46095 15.6948 3.80516 16.039 4.22852 16.2548C4.70982 16.5 5.33988 16.5 6.6 16.5Z"
|
|
18
|
+
stroke={color}
|
|
19
|
+
strokeWidth="1.5"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
export { BookIcon };
|
|
27
|
+
export default BookIcon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const BookIcon: React.FC<IconProps> = ({ size = 18, color = "currentColor" }) => (
|
|
9
|
+
<svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 18 18"
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
d="M15 14.25V12H5.25C4.00736 12 3 13.0074 3 14.25M6.6 16.5H12.6C13.4401 16.5 13.8601 16.5 14.181 16.3365C14.4632 16.1927 14.6927 15.9632 14.8365 15.681C15 15.3601 15 14.9401 15 14.1V3.9C15 3.05992 15 2.63988 14.8365 2.31901C14.6927 2.03677 14.4632 1.8073 14.181 1.66349C13.8601 1.5 13.4401 1.5 12.6 1.5H6.6C5.33988 1.5 4.70982 1.5 4.22852 1.74524C3.80516 1.96095 3.46095 2.30516 3.24524 2.72852C3 3.20982 3 3.83988 3 5.1V12.9C3 14.1601 3 14.7902 3.24524 15.2715C3.46095 15.6948 3.80516 16.039 4.22852 16.2548C4.70982 16.5 5.33988 16.5 6.6 16.5Z"
|
|
18
|
+
stroke={color}
|
|
19
|
+
strokeWidth="1.5"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
export default BookIcon;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type IconProps = {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
fill?: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const BookmarkIcon: React.FC<IconProps> = ({
|
|
11
|
+
size = 18,
|
|
12
|
+
color = '#000000',
|
|
13
|
+
fill = "none",
|
|
14
|
+
}) => (
|
|
15
|
+
<Svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 18 18"
|
|
19
|
+
fill={fill}
|
|
20
|
+
>
|
|
21
|
+
<Path
|
|
22
|
+
d="M3.75 5.85C3.75 4.58988 3.75 3.95982 3.99524 3.47852C4.21095 3.05516 4.55516 2.71095 4.97852 2.49524C5.45982 2.25 6.08988 2.25 7.35 2.25H10.65C11.9101 2.25 12.5402 2.25 13.0215 2.49524C13.4448 2.71095 13.789 3.05516 14.0048 3.47852C14.25 3.95982 14.25 4.58988 14.25 5.85V15.75L9 12.75L3.75 15.75V5.85Z"
|
|
23
|
+
stroke={color}
|
|
24
|
+
strokeWidth="1.25"
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
</Svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
export { BookmarkIcon };
|
|
32
|
+
export default BookmarkIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
type IconProps = {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
fill?: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const BookmarkIcon: React.FC<IconProps> = ({
|
|
11
|
+
size = 18,
|
|
12
|
+
color = "currentColor",
|
|
13
|
+
className,
|
|
14
|
+
fill = "none",
|
|
15
|
+
}) => (
|
|
16
|
+
<svg
|
|
17
|
+
width={size}
|
|
18
|
+
height={size}
|
|
19
|
+
viewBox="0 0 18 18"
|
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
className={className}
|
|
22
|
+
role="img"
|
|
23
|
+
fill={fill}
|
|
24
|
+
aria-hidden="true"
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="M3.75 5.85C3.75 4.58988 3.75 3.95982 3.99524 3.47852C4.21095 3.05516 4.55516 2.71095 4.97852 2.49524C5.45982 2.25 6.08988 2.25 7.35 2.25H10.65C11.9101 2.25 12.5402 2.25 13.0215 2.49524C13.4448 2.71095 13.789 3.05516 14.0048 3.47852C14.25 3.95982 14.25 4.58988 14.25 5.85V15.75L9 12.75L3.75 15.75V5.85Z"
|
|
28
|
+
stroke={color}
|
|
29
|
+
strokeWidth="1.25"
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
</svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export default BookmarkIcon;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const CollaborativeIcon: React.FC<IconProps> = ({
|
|
11
|
+
size = 18,
|
|
12
|
+
color = '#000000',
|
|
13
|
+
strokeWidth = 1.5,
|
|
14
|
+
}) => (
|
|
15
|
+
<Svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 18 18"
|
|
19
|
+
fill="none"
|
|
20
|
+
>
|
|
21
|
+
<Path
|
|
22
|
+
d="M12 13.5L14.25 11.25M14.25 11.25L16.5 13.5M14.25 11.25V15.75M11.625 2.46807C12.7244 2.91311 13.5 3.99098 13.5 5.25C13.5 6.50902 12.7244 7.58689 11.625 8.03193M9 11.25H6C4.60218 11.25 3.90326 11.25 3.35195 11.4784C2.61687 11.7828 2.03284 12.3669 1.72836 13.1019C1.5 13.6533 1.5 14.3522 1.5 15.75M10.125 5.25C10.125 6.90685 8.78185 8.25 7.125 8.25C5.46815 8.25 4.125 6.90685 4.125 5.25C4.125 3.59315 5.46815 2.25 7.125 2.25C8.78185 2.25 10.125 3.59315 10.125 5.25Z"
|
|
23
|
+
stroke={color}
|
|
24
|
+
strokeWidth={strokeWidth}
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
</Svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
export { CollaborativeIcon };
|
|
32
|
+
export default CollaborativeIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const CollaborativeIcon: React.FC<IconProps> = ({
|
|
10
|
+
size = 18,
|
|
11
|
+
color = "currentColor",
|
|
12
|
+
strokeWidth = 1.5,
|
|
13
|
+
}) => (
|
|
14
|
+
<svg
|
|
15
|
+
width={size}
|
|
16
|
+
height={size}
|
|
17
|
+
viewBox="0 0 18 18"
|
|
18
|
+
fill="none"
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
>
|
|
21
|
+
<path
|
|
22
|
+
d="M12 13.5L14.25 11.25M14.25 11.25L16.5 13.5M14.25 11.25V15.75M11.625 2.46807C12.7244 2.91311 13.5 3.99098 13.5 5.25C13.5 6.50902 12.7244 7.58689 11.625 8.03193M9 11.25H6C4.60218 11.25 3.90326 11.25 3.35195 11.4784C2.61687 11.7828 2.03284 12.3669 1.72836 13.1019C1.5 13.6533 1.5 14.3522 1.5 15.75M10.125 5.25C10.125 6.90685 8.78185 8.25 7.125 8.25C5.46815 8.25 4.125 6.90685 4.125 5.25C4.125 3.59315 5.46815 2.25 7.125 2.25C8.78185 2.25 10.125 3.59315 10.125 5.25Z"
|
|
23
|
+
stroke={color}
|
|
24
|
+
strokeWidth={strokeWidth}
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
export default CollaborativeIcon;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type DataIconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
stroke?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const DataIcon: React.FC<DataIconProps> = ({
|
|
11
|
+
size = 24,
|
|
12
|
+
stroke = '#000000',
|
|
13
|
+
strokeWidth = 2,
|
|
14
|
+
}) => {
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
viewBox="0 0 24 24"
|
|
18
|
+
fill="none"
|
|
19
|
+
width={size}
|
|
20
|
+
height={size}
|
|
21
|
+
stroke={stroke}
|
|
22
|
+
strokeWidth={strokeWidth}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
>
|
|
26
|
+
<Path d="M21.2 22C21.48 22 21.62 22 21.727 21.9455C21.8211 21.8976 21.8976 21.8211 21.9455 21.727C22 21.62 22 21.48 22 21.2V10.8C22 10.52 22 10.38 21.9455 10.273C21.8976 10.1789 21.8211 10.1024 21.727 10.0545C21.62 10 21.48 10 21.2 10L18.8 10C18.52 10 18.38 10 18.273 10.0545C18.1789 10.1024 18.1024 10.1789 18.0545 10.273C18 10.38 18 10.52 18 10.8V13.2C18 13.48 18 13.62 17.9455 13.727C17.8976 13.8211 17.8211 13.8976 17.727 13.9455C17.62 14 17.48 14 17.2 14H14.8C14.52 14 14.38 14 14.273 14.0545C14.1789 14.1024 14.1024 14.1789 14.0545 14.273C14 14.38 14 14.52 14 14.8V17.2C14 17.48 14 17.62 13.9455 17.727C13.8976 17.8211 13.8211 17.8976 13.727 17.9455C13.62 18 13.48 18 13.2 18H10.8C10.52 18 10.38 18 10.273 18.0545C10.1789 18.1024 10.1024 18.1789 10.0545 18.273C10 18.38 10 18.52 10 18.8V21.2C10 21.48 10 21.62 10.0545 21.727C10.1024 21.8211 10.1789 21.8976 10.273 21.9455C10.38 22 10.52 22 10.8 22L21.2 22Z" />
|
|
27
|
+
<Path d="M10 6.8C10 6.51997 10 6.37996 10.0545 6.273C10.1024 6.17892 10.1789 6.10243 10.273 6.0545C10.38 6 10.52 6 10.8 6H13.2C13.48 6 13.62 6 13.727 6.0545C13.8211 6.10243 13.8976 6.17892 13.9455 6.273C14 6.37996 14 6.51997 14 6.8V9.2C14 9.48003 14 9.62004 13.9455 9.727C13.8976 9.82108 13.8211 9.89757 13.727 9.9455C13.62 10 13.48 10 13.2 10H10.8C10.52 10 10.38 10 10.273 9.9455C10.1789 9.89757 10.1024 9.82108 10.0545 9.727C10 9.62004 10 9.48003 10 9.2V6.8Z" />
|
|
28
|
+
<Path d="M3 12.8C3 12.52 3 12.38 3.0545 12.273C3.10243 12.1789 3.17892 12.1024 3.273 12.0545C3.37996 12 3.51997 12 3.8 12H6.2C6.48003 12 6.62004 12 6.727 12.0545C6.82108 12.1024 6.89757 12.1789 6.9455 12.273C7 12.38 7 12.52 7 12.8V15.2C7 15.48 7 15.62 6.9455 15.727C6.89757 15.8211 6.82108 15.8976 6.727 15.9455C6.62004 16 6.48003 16 6.2 16H3.8C3.51997 16 3.37996 16 3.273 15.9455C3.17892 15.8976 3.10243 15.8211 3.0545 15.727C3 15.62 3 15.48 3 15.2V12.8Z" />
|
|
29
|
+
<Path d="M2 2.8C2 2.51997 2 2.37996 2.0545 2.273C2.10243 2.17892 2.17892 2.10243 2.273 2.0545C2.37996 2 2.51997 2 2.8 2H5.2C5.48003 2 5.62004 2 5.727 2.0545C5.82108 2.10243 5.89757 2.17892 5.9455 2.273C6 2.37996 6 2.51997 6 2.8V5.2C6 5.48003 6 5.62004 5.9455 5.727C5.89757 5.82108 5.82108 5.89757 5.727 5.9455C5.62004 6 5.48003 6 5.2 6H2.8C2.51997 6 2.37996 6 2.273 5.9455C2.17892 5.89757 2.10243 5.82108 2.0545 5.727C2 5.62004 2 5.48003 2 5.2V2.8Z" />
|
|
30
|
+
</Svg>
|
|
31
|
+
);
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export { DataIcon };
|
|
35
|
+
export default DataIcon;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type DataIconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
title?: string;
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export const DataIcon = React.forwardRef<SVGSVGElement, DataIconProps>(
|
|
9
|
+
(
|
|
10
|
+
{
|
|
11
|
+
title,
|
|
12
|
+
size = 24,
|
|
13
|
+
stroke = "currentColor",
|
|
14
|
+
strokeWidth = 2,
|
|
15
|
+
width,
|
|
16
|
+
height,
|
|
17
|
+
role,
|
|
18
|
+
...rest
|
|
19
|
+
},
|
|
20
|
+
ref,
|
|
21
|
+
) => {
|
|
22
|
+
const ariaProps = title
|
|
23
|
+
? { role: role ?? "img", "aria-label": title }
|
|
24
|
+
: { "aria-hidden": true as const };
|
|
25
|
+
|
|
26
|
+
return (
|
|
27
|
+
<svg
|
|
28
|
+
ref={ref}
|
|
29
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
30
|
+
viewBox="0 0 24 24"
|
|
31
|
+
fill="none"
|
|
32
|
+
width={width ?? size}
|
|
33
|
+
height={height ?? size}
|
|
34
|
+
stroke={stroke}
|
|
35
|
+
strokeWidth={strokeWidth}
|
|
36
|
+
strokeLinecap="round"
|
|
37
|
+
strokeLinejoin="round"
|
|
38
|
+
{...ariaProps}
|
|
39
|
+
{...rest}
|
|
40
|
+
>
|
|
41
|
+
{title ? <title>{title}</title> : null}
|
|
42
|
+
<path d="M21.2 22C21.48 22 21.62 22 21.727 21.9455C21.8211 21.8976 21.8976 21.8211 21.9455 21.727C22 21.62 22 21.48 22 21.2V10.8C22 10.52 22 10.38 21.9455 10.273C21.8976 10.1789 21.8211 10.1024 21.727 10.0545C21.62 10 21.48 10 21.2 10L18.8 10C18.52 10 18.38 10 18.273 10.0545C18.1789 10.1024 18.1024 10.1789 18.0545 10.273C18 10.38 18 10.52 18 10.8V13.2C18 13.48 18 13.62 17.9455 13.727C17.8976 13.8211 17.8211 13.8976 17.727 13.9455C17.62 14 17.48 14 17.2 14H14.8C14.52 14 14.38 14 14.273 14.0545C14.1789 14.1024 14.1024 14.1789 14.0545 14.273C14 14.38 14 14.52 14 14.8V17.2C14 17.48 14 17.62 13.9455 17.727C13.8976 17.8211 13.8211 17.8976 13.727 17.9455C13.62 18 13.48 18 13.2 18H10.8C10.52 18 10.38 18 10.273 18.0545C10.1789 18.1024 10.1024 18.1789 10.0545 18.273C10 18.38 10 18.52 10 18.8V21.2C10 21.48 10 21.62 10.0545 21.727C10.1024 21.8211 10.1789 21.8976 10.273 21.9455C10.38 22 10.52 22 10.8 22L21.2 22Z" />
|
|
43
|
+
<path d="M10 6.8C10 6.51997 10 6.37996 10.0545 6.273C10.1024 6.17892 10.1789 6.10243 10.273 6.0545C10.38 6 10.52 6 10.8 6H13.2C13.48 6 13.62 6 13.727 6.0545C13.8211 6.10243 13.8976 6.17892 13.9455 6.273C14 6.37996 14 6.51997 14 6.8V9.2C14 9.48003 14 9.62004 13.9455 9.727C13.8976 9.82108 13.8211 9.89757 13.727 9.9455C13.62 10 13.48 10 13.2 10H10.8C10.52 10 10.38 10 10.273 9.9455C10.1789 9.89757 10.1024 9.82108 10.0545 9.727C10 9.62004 10 9.48003 10 9.2V6.8Z" />
|
|
44
|
+
<path d="M3 12.8C3 12.52 3 12.38 3.0545 12.273C3.10243 12.1789 3.17892 12.1024 3.273 12.0545C3.37996 12 3.51997 12 3.8 12H6.2C6.48003 12 6.62004 12 6.727 12.0545C6.82108 12.1024 6.89757 12.1789 6.9455 12.273C7 12.38 7 12.52 7 12.8V15.2C7 15.48 7 15.62 6.9455 15.727C6.89757 15.8211 6.82108 15.8976 6.727 15.9455C6.62004 16 6.48003 16 6.2 16H3.8C3.51997 16 3.37996 16 3.273 15.9455C3.17892 15.8976 3.10243 15.8211 3.0545 15.727C3 15.62 3 15.48 3 15.2V12.8Z" />
|
|
45
|
+
<path d="M2 2.8C2 2.51997 2 2.37996 2.0545 2.273C2.10243 2.17892 2.17892 2.10243 2.273 2.0545C2.37996 2 2.51997 2 2.8 2H5.2C5.48003 2 5.62004 2 5.727 2.0545C5.82108 2.10243 5.89757 2.17892 5.9455 2.273C6 2.37996 6 2.51997 6 2.8V5.2C6 5.48003 6 5.62004 5.9455 5.727C5.89757 5.82108 5.82108 5.89757 5.727 5.9455C5.62004 6 5.48003 6 5.2 6H2.8C2.51997 6 2.37996 6 2.273 5.9455C2.17892 5.89757 2.10243 5.82108 2.0545 5.727C2 5.62004 2 5.48003 2 5.2V2.8Z" />
|
|
46
|
+
</svg>
|
|
47
|
+
);
|
|
48
|
+
},
|
|
49
|
+
);
|
|
50
|
+
|
|
51
|
+
DataIcon.displayName = "DataIcon";
|