@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,37 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* MailIcon React component
|
|
5
|
+
*
|
|
6
|
+
* @param props - SVG props to customize the icon (e.g., width, height, stroke color)
|
|
7
|
+
*/
|
|
8
|
+
const MailIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
|
|
9
|
+
const {
|
|
10
|
+
width = 18,
|
|
11
|
+
height = 18,
|
|
12
|
+
stroke = 'currentColor',
|
|
13
|
+
strokeWidth = 1.5,
|
|
14
|
+
...restProps
|
|
15
|
+
} = props;
|
|
16
|
+
|
|
17
|
+
return (
|
|
18
|
+
<svg
|
|
19
|
+
width={width}
|
|
20
|
+
height={height}
|
|
21
|
+
viewBox="0 0 18 18"
|
|
22
|
+
fill="none"
|
|
23
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
24
|
+
{...restProps}
|
|
25
|
+
>
|
|
26
|
+
<path
|
|
27
|
+
d="M1.5 5.25L7.62369 9.53658C8.11957 9.8837 8.36751 10.0573 8.6372 10.1245C8.87542 10.1839 9.12458 10.1839 9.3628 10.1245C9.63249 10.0573 9.88043 9.8837 10.3763 9.53658L16.5 5.25M5.1 15H12.9C14.1601 15 14.7902 15 15.2715 14.7548C15.6948 14.539 16.039 14.1948 16.2548 13.7715C16.5 13.2902 16.5 12.6601 16.5 11.4V6.6C16.5 5.33988 16.5 4.70982 16.2548 4.22852C16.039 3.80516 15.6948 3.46095 15.2715 3.24524C14.7902 3 14.1601 3 12.9 3H5.1C3.83988 3 3.20982 3 2.72852 3.24524C2.30516 3.46095 1.96095 3.80516 1.74524 4.22852C1.5 4.70982 1.5 5.33988 1.5 6.6V11.4C1.5 12.6601 1.5 13.2902 1.74524 13.7715C1.96095 14.1948 2.30516 14.539 2.72852 14.7548C3.20982 15 3.83988 15 5.1 15Z"
|
|
28
|
+
stroke={stroke}
|
|
29
|
+
strokeWidth={strokeWidth}
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
</svg>
|
|
34
|
+
);
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export default MailIcon;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface MessageSquareTextIconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const MessageSquareTextIcon: React.FC<MessageSquareTextIconProps> = ({
|
|
10
|
+
size = 18,
|
|
11
|
+
strokeWidth = 1.5,
|
|
12
|
+
}) => (
|
|
13
|
+
<Svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 18 18"
|
|
17
|
+
fill="none"
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
d="M5.25 6.375H9M5.25 9H11.25M7.26281 13.5H12.15C13.4101 13.5 14.0402 13.5 14.5215 13.2548C14.9448 13.039 15.289 12.6948 15.5048 12.2715C15.75 11.7902 15.75 11.1601 15.75 9.9V5.85C15.75 4.58988 15.75 3.95982 15.5048 3.47852C15.289 3.05516 14.9448 2.71095 14.5215 2.49524C14.0402 2.25 13.4101 2.25 12.15 2.25H5.85C4.58988 2.25 3.95982 2.25 3.47852 2.49524C3.05516 2.71095 2.71095 3.05516 2.49524 3.47852C2.25 3.95982 2.25 4.58988 2.25 5.85V15.2516C2.25 15.6513 2.25 15.8511 2.33192 15.9537C2.40317 16.043 2.5112 16.0949 2.6254 16.0948C2.75672 16.0946 2.91275 15.9698 3.22482 15.7201L5.01391 14.2889C5.37939 13.9965 5.56213 13.8503 5.76561 13.7463C5.94615 13.6541 6.13832 13.5867 6.33691 13.5459C6.56075 13.5 6.79477 13.5 7.26281 13.5Z"
|
|
21
|
+
stroke="currentColor"
|
|
22
|
+
strokeWidth={strokeWidth}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
export { MessageSquareTextIcon };
|
|
30
|
+
export default MessageSquareTextIcon;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
interface MessageSquareTextIconProps extends SVGProps<SVGSVGElement> {
|
|
5
|
+
/**
|
|
6
|
+
* Size of the icon (width and height). Default is 18.
|
|
7
|
+
*/
|
|
8
|
+
size?: number;
|
|
9
|
+
strokeWidth?: number;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* A reusable "Message Square Text" icon component.
|
|
14
|
+
*
|
|
15
|
+
* @param size - width and height of the SVG in pixels.
|
|
16
|
+
* @param props - additional SVG props such as className or style.
|
|
17
|
+
*/
|
|
18
|
+
const MessageSquareTextIcon: React.FC<MessageSquareTextIconProps> = ({
|
|
19
|
+
size = 18,
|
|
20
|
+
strokeWidth = 1.5,
|
|
21
|
+
...props
|
|
22
|
+
}) => (
|
|
23
|
+
<svg
|
|
24
|
+
width={size}
|
|
25
|
+
height={size}
|
|
26
|
+
viewBox="0 0 18 18"
|
|
27
|
+
fill="none"
|
|
28
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
29
|
+
{...props}
|
|
30
|
+
>
|
|
31
|
+
<path
|
|
32
|
+
d="M5.25 6.375H9M5.25 9H11.25M7.26281 13.5H12.15C13.4101 13.5 14.0402 13.5 14.5215 13.2548C14.9448 13.039 15.289 12.6948 15.5048 12.2715C15.75 11.7902 15.75 11.1601 15.75 9.9V5.85C15.75 4.58988 15.75 3.95982 15.5048 3.47852C15.289 3.05516 14.9448 2.71095 14.5215 2.49524C14.0402 2.25 13.4101 2.25 12.15 2.25H5.85C4.58988 2.25 3.95982 2.25 3.47852 2.49524C3.05516 2.71095 2.71095 3.05516 2.49524 3.47852C2.25 3.95982 2.25 4.58988 2.25 5.85V15.2516C2.25 15.6513 2.25 15.8511 2.33192 15.9537C2.40317 16.043 2.5112 16.0949 2.6254 16.0948C2.75672 16.0946 2.91275 15.9698 3.22482 15.7201L5.01391 14.2889C5.37939 13.9965 5.56213 13.8503 5.76561 13.7463C5.94615 13.6541 6.13832 13.5867 6.33691 13.5459C6.56075 13.5 6.79477 13.5 7.26281 13.5Z"
|
|
33
|
+
stroke="currentColor"
|
|
34
|
+
strokeWidth={strokeWidth}
|
|
35
|
+
strokeLinecap="round"
|
|
36
|
+
strokeLinejoin="round"
|
|
37
|
+
/>
|
|
38
|
+
</svg>
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
export default MessageSquareTextIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type IconProps = {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export const MessageTextCircle01Icon: React.FC<IconProps> = ({
|
|
10
|
+
size = 18,
|
|
11
|
+
color = '#000000',
|
|
12
|
+
}) => (
|
|
13
|
+
<Svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 18 18"
|
|
17
|
+
fill="none"
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
d="M5.99972 7.125H8.99972M5.99972 9.75H11.2497M9.37472 15C12.8955 15 15.7497 12.1458 15.7497 8.625C15.7497 5.10418 12.8955 2.25 9.37472 2.25C5.8539 2.25 2.99972 5.10418 2.99972 8.625C2.99972 9.3375 3.1166 10.0227 3.33225 10.6625C3.4134 10.9032 3.45397 11.0236 3.46129 11.1161C3.46852 11.2074 3.46305 11.2714 3.44046 11.3602C3.41758 11.4501 3.36707 11.5436 3.26604 11.7306L2.0393 14.0013C1.86431 14.3252 1.77682 14.4871 1.7964 14.6121C1.81346 14.7209 1.87753 14.8168 1.9716 14.8742C2.0796 14.9401 2.26269 14.9211 2.62887 14.8833L6.46964 14.4863C6.58595 14.4742 6.64411 14.4682 6.69711 14.4703C6.74925 14.4722 6.78605 14.4771 6.83689 14.4889C6.88858 14.5008 6.95358 14.5258 7.08358 14.5759C7.79462 14.8498 8.56713 15 9.37472 15Z"
|
|
21
|
+
stroke={color}
|
|
22
|
+
strokeWidth="1.25"
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
export default MessageTextCircle01Icon;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
type IconProps = {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export const MessageTextCircle01Icon: React.FC<IconProps> = ({
|
|
10
|
+
size = 18,
|
|
11
|
+
color = "currentColor",
|
|
12
|
+
className,
|
|
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
|
+
className={className}
|
|
21
|
+
role="img"
|
|
22
|
+
aria-hidden="true"
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
d="M5.99972 7.125H8.99972M5.99972 9.75H11.2497M9.37472 15C12.8955 15 15.7497 12.1458 15.7497 8.625C15.7497 5.10418 12.8955 2.25 9.37472 2.25C5.8539 2.25 2.99972 5.10418 2.99972 8.625C2.99972 9.3375 3.1166 10.0227 3.33225 10.6625C3.4134 10.9032 3.45397 11.0236 3.46129 11.1161C3.46852 11.2074 3.46305 11.2714 3.44046 11.3602C3.41758 11.4501 3.36707 11.5436 3.26604 11.7306L2.0393 14.0013C1.86431 14.3252 1.77682 14.4871 1.7964 14.6121C1.81346 14.7209 1.87753 14.8168 1.9716 14.8742C2.0796 14.9401 2.26269 14.9211 2.62887 14.8833L6.46964 14.4863C6.58595 14.4742 6.64411 14.4682 6.69711 14.4703C6.74925 14.4722 6.78605 14.4771 6.83689 14.4889C6.88858 14.5008 6.95358 14.5258 7.08358 14.5759C7.79462 14.8498 8.56713 15 9.37472 15Z"
|
|
26
|
+
stroke={color}
|
|
27
|
+
strokeWidth="1.25"
|
|
28
|
+
strokeLinecap="round"
|
|
29
|
+
strokeLinejoin="round"
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const NotificationTextIcon = () => (
|
|
5
|
+
<Svg
|
|
6
|
+
width="18"
|
|
7
|
+
height="18"
|
|
8
|
+
viewBox="0 0 18 18"
|
|
9
|
+
fill="none"
|
|
10
|
+
>
|
|
11
|
+
<Path
|
|
12
|
+
d="M8.25 3H5.85C4.58988 3 3.95982 3 3.47852 3.24524C3.05516 3.46095 2.71095 3.80516 2.49524 4.22852C2.25 4.70982 2.25 5.33988 2.25 6.6V12.15C2.25 13.4101 2.25 14.0402 2.49524 14.5215C2.71095 14.9448 3.05516 15.289 3.47852 15.5048C3.95982 15.75 4.58988 15.75 5.85 15.75H11.4C12.6601 15.75 13.2902 15.75 13.7715 15.5048C14.1948 15.289 14.539 14.9448 14.7548 14.5215C15 14.0402 15 13.4101 15 12.15V9.75M9.75 12.75H5.25M11.25 9.75H5.25M15.091 2.90901C15.9697 3.78769 15.9697 5.21231 15.091 6.09099C14.2123 6.96967 12.7877 6.96967 11.909 6.09099C11.0303 5.21231 11.0303 3.78769 11.909 2.90901C12.7877 2.03033 14.2123 2.03033 15.091 2.90901Z"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeWidth={1.5}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default NotificationTextIcon;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type IconProps = React.SVGProps<SVGSVGElement>;
|
|
4
|
+
|
|
5
|
+
export const NotificationTextIcon = (props: IconProps) => (
|
|
6
|
+
<svg
|
|
7
|
+
width="18"
|
|
8
|
+
height="18"
|
|
9
|
+
viewBox="0 0 18 18"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
aria-hidden="true"
|
|
13
|
+
focusable="false"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
d="M8.25 3H5.85C4.58988 3 3.95982 3 3.47852 3.24524C3.05516 3.46095 2.71095 3.80516 2.49524 4.22852C2.25 4.70982 2.25 5.33988 2.25 6.6V12.15C2.25 13.4101 2.25 14.0402 2.49524 14.5215C2.71095 14.9448 3.05516 15.289 3.47852 15.5048C3.95982 15.75 4.58988 15.75 5.85 15.75H11.4C12.6601 15.75 13.2902 15.75 13.7715 15.5048C14.1948 15.289 14.539 14.9448 14.7548 14.5215C15 14.0402 15 13.4101 15 12.15V9.75M9.75 12.75H5.25M11.25 9.75H5.25M15.091 2.90901C15.9697 3.78769 15.9697 5.21231 15.091 6.09099C14.2123 6.96967 12.7877 6.96967 11.909 6.09099C11.0303 5.21231 11.0303 3.78769 11.909 2.90901C12.7877 2.03033 14.2123 2.03033 15.091 2.90901Z"
|
|
18
|
+
stroke="currentColor"
|
|
19
|
+
strokeWidth={1.5}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type Props = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const SendIcon = ({ size = 18 }: Props) => (
|
|
9
|
+
<Svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 18 18"
|
|
13
|
+
fill="none"
|
|
14
|
+
>
|
|
15
|
+
<Path
|
|
16
|
+
opacity={0.9}
|
|
17
|
+
d="M7.87318 10.1251L15.7482 2.25013M7.96886 10.3712L9.93995 15.4397C10.1136 15.8862 10.2004 16.1094 10.3255 16.1746C10.434 16.2311 10.5631 16.2312 10.6717 16.1748C10.7968 16.1098 10.8839 15.8866 11.0581 15.4403L16.0009 2.77453C16.1581 2.37164 16.2367 2.1702 16.1937 2.04148C16.1563 1.92969 16.0686 1.84197 15.9568 1.80462C15.8281 1.76162 15.6267 1.84023 15.2238 1.99746L2.55797 6.94021C2.11166 7.11438 1.88851 7.20146 1.82348 7.32664C1.7671 7.43516 1.76718 7.56434 1.82368 7.67279C1.88886 7.7979 2.11212 7.88472 2.55862 8.05836L7.62713 10.0294C7.71776 10.0647 7.76308 10.0823 7.80124 10.1095C7.83507 10.1337 7.86464 10.1632 7.88877 10.1971C7.91599 10.2352 7.93361 10.2805 7.96886 10.3712Z"
|
|
18
|
+
stroke="currentColor"
|
|
19
|
+
strokeLinecap="round"
|
|
20
|
+
strokeLinejoin="round"
|
|
21
|
+
/>
|
|
22
|
+
</Svg>
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
SendIcon.displayName = "SendIcon";
|
|
26
|
+
|
|
27
|
+
export { SendIcon };
|
|
28
|
+
export default SendIcon;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
type Props = SVGProps<SVGSVGElement> & {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const SendIcon = React.forwardRef<SVGSVGElement, Props>(
|
|
9
|
+
({ size = 18, ...props }, ref) => (
|
|
10
|
+
<svg
|
|
11
|
+
ref={ref}
|
|
12
|
+
width={size}
|
|
13
|
+
height={size}
|
|
14
|
+
viewBox="0 0 18 18"
|
|
15
|
+
fill="none"
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
opacity={0.9}
|
|
21
|
+
d="M7.87318 10.1251L15.7482 2.25013M7.96886 10.3712L9.93995 15.4397C10.1136 15.8862 10.2004 16.1094 10.3255 16.1746C10.434 16.2311 10.5631 16.2312 10.6717 16.1748C10.7968 16.1098 10.8839 15.8866 11.0581 15.4403L16.0009 2.77453C16.1581 2.37164 16.2367 2.1702 16.1937 2.04148C16.1563 1.92969 16.0686 1.84197 15.9568 1.80462C15.8281 1.76162 15.6267 1.84023 15.2238 1.99746L2.55797 6.94021C2.11166 7.11438 1.88851 7.20146 1.82348 7.32664C1.7671 7.43516 1.76718 7.56434 1.82368 7.67279C1.88886 7.7979 2.11212 7.88472 2.55862 8.05836L7.62713 10.0294C7.71776 10.0647 7.76308 10.0823 7.80124 10.1095C7.83507 10.1337 7.86464 10.1632 7.88877 10.1971C7.91599 10.2352 7.93361 10.2805 7.96886 10.3712Z"
|
|
22
|
+
stroke="currentColor"
|
|
23
|
+
strokeWidth={"currentStroke"}
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
</svg>
|
|
28
|
+
),
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
SendIcon.displayName = "SendIcon";
|
|
32
|
+
|
|
33
|
+
export default SendIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { default as AnnotationInfoIcon } from './AnnotationInfoIcon';
|
|
2
|
+
export { default as ChatBubbleDotIcon } from './ChatBubbleDotIcon';
|
|
3
|
+
export { default as ChatBubbleIcon } from './ChatBubbleIcon';
|
|
4
|
+
export { default as MailIcon } from './MailIcon';
|
|
5
|
+
export { default as MessageSquareTextIcon } from './MessageSquareTextIcon';
|
|
6
|
+
export { default as MessageTextCircle01Icon } from './MessageTextCircle01Icon';
|
|
7
|
+
export { default as NotificationTextIcon } from './NotificationTextIcon';
|
|
8
|
+
export { default as SendIcon } from './SendIcon';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const CameraIcon = (
|
|
5
|
+
props: { width?: number | string; height?: number | string; stroke?: string }
|
|
6
|
+
): React.JSX.Element => (
|
|
7
|
+
<Svg
|
|
8
|
+
width={props.width ?? 16}
|
|
9
|
+
height={props.height ?? 16}
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
fill="none"
|
|
12
|
+
>
|
|
13
|
+
<Path
|
|
14
|
+
d="M1.33398 5.58473C1.33398 5.35119 1.33398 5.23442 1.34373 5.13606C1.43772 4.18743 2.18816 3.43699 3.13679 3.343C3.23515 3.33325 3.35822 3.33325 3.60437 3.33325C3.69922 3.33325 3.74664 3.33325 3.78691 3.33081C4.30106 3.29968 4.75129 2.97517 4.94341 2.49725C4.95846 2.45982 4.97252 2.41763 5.00065 2.33325C5.02878 2.24887 5.04284 2.20668 5.05789 2.16925C5.25002 1.69133 5.70024 1.36683 6.21439 1.33569C6.25466 1.33325 6.29913 1.33325 6.38808 1.33325H9.61323C9.70217 1.33325 9.74664 1.33325 9.78691 1.33569C10.3011 1.36683 10.7513 1.69133 10.9434 2.16925C10.9585 2.20668 10.9725 2.24887 11.0007 2.33325C11.0288 2.41763 11.0428 2.45982 11.0579 2.49725C11.25 2.97517 11.7002 3.29968 12.2144 3.33081C12.2547 3.33325 12.3021 3.33325 12.3969 3.33325C12.6431 3.33325 12.7662 3.33325 12.8645 3.343C13.8131 3.43699 14.5636 4.18743 14.6576 5.13606C14.6673 5.23442 14.6673 5.35119 14.6673 5.58473V10.7999C14.6673 11.92 14.6673 12.4801 14.4493 12.9079C14.2576 13.2842 13.9516 13.5902 13.5753 13.7819C13.1475 13.9999 12.5874 13.9999 11.4673 13.9999H4.53398C3.41388 13.9999 2.85383 13.9999 2.426 13.7819C2.04968 13.5902 1.74372 13.2842 1.55197 12.9079C1.33398 12.4801 1.33398 11.92 1.33398 10.7999V5.58473Z"
|
|
15
|
+
stroke="currentColor"
|
|
16
|
+
strokeWidth="1.25"
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
d="M8.00065 10.9999C9.47341 10.9999 10.6673 9.80601 10.6673 8.33325C10.6673 6.86049 9.47341 5.66659 8.00065 5.66659C6.52789 5.66659 5.33398 6.86049 5.33398 8.33325C5.33398 9.80601 6.52789 10.9999 8.00065 10.9999Z"
|
|
22
|
+
stroke="currentColor"
|
|
23
|
+
strokeWidth="1.25"
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
export default CameraIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
export const CameraIcon = (
|
|
4
|
+
props: React.SVGProps<SVGSVGElement>
|
|
5
|
+
): React.JSX.Element => (
|
|
6
|
+
<svg
|
|
7
|
+
width="16"
|
|
8
|
+
height="16"
|
|
9
|
+
viewBox="0 0 16 16"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
aria-hidden="true"
|
|
13
|
+
focusable="false"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
d="M1.33398 5.58473C1.33398 5.35119 1.33398 5.23442 1.34373 5.13606C1.43772 4.18743 2.18816 3.43699 3.13679 3.343C3.23515 3.33325 3.35822 3.33325 3.60437 3.33325C3.69922 3.33325 3.74664 3.33325 3.78691 3.33081C4.30106 3.29968 4.75129 2.97517 4.94341 2.49725C4.95846 2.45982 4.97252 2.41763 5.00065 2.33325C5.02878 2.24887 5.04284 2.20668 5.05789 2.16925C5.25002 1.69133 5.70024 1.36683 6.21439 1.33569C6.25466 1.33325 6.29913 1.33325 6.38808 1.33325H9.61323C9.70217 1.33325 9.74664 1.33325 9.78691 1.33569C10.3011 1.36683 10.7513 1.69133 10.9434 2.16925C10.9585 2.20668 10.9725 2.24887 11.0007 2.33325C11.0288 2.41763 11.0428 2.45982 11.0579 2.49725C11.25 2.97517 11.7002 3.29968 12.2144 3.33081C12.2547 3.33325 12.3021 3.33325 12.3969 3.33325C12.6431 3.33325 12.7662 3.33325 12.8645 3.343C13.8131 3.43699 14.5636 4.18743 14.6576 5.13606C14.6673 5.23442 14.6673 5.35119 14.6673 5.58473V10.7999C14.6673 11.92 14.6673 12.4801 14.4493 12.9079C14.2576 13.2842 13.9516 13.5902 13.5753 13.7819C13.1475 13.9999 12.5874 13.9999 11.4673 13.9999H4.53398C3.41388 13.9999 2.85383 13.9999 2.426 13.7819C2.04968 13.5902 1.74372 13.2842 1.55197 12.9079C1.33398 12.4801 1.33398 11.92 1.33398 10.7999V5.58473Z"
|
|
18
|
+
stroke="currentColor"
|
|
19
|
+
strokeWidth="1.25"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
<path
|
|
24
|
+
d="M8.00065 10.9999C9.47341 10.9999 10.6673 9.80601 10.6673 8.33325C10.6673 6.86049 9.47341 5.66659 8.00065 5.66659C6.52789 5.66659 5.33398 6.86049 5.33398 8.33325C5.33398 9.80601 6.52789 10.9999 8.00065 10.9999Z"
|
|
25
|
+
stroke="currentColor"
|
|
26
|
+
strokeWidth="1.25"
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface Download02IconProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
strokeColor?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const Download02Icon: React.FC<Download02IconProps> = ({
|
|
10
|
+
size = 16,
|
|
11
|
+
strokeColor = '#000000',
|
|
12
|
+
}) => (
|
|
13
|
+
<Svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 16 16"
|
|
17
|
+
fill="none"
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
d="M14 14H2M12 7.33333L8 11.3333M8 11.3333L4 7.33333M8 11.3333V2"
|
|
21
|
+
stroke={strokeColor}
|
|
22
|
+
strokeWidth={1.25}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
export { Download02Icon };
|
|
30
|
+
export default Download02Icon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface Download02IconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
strokeColor?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const Download02Icon: React.FC<Download02IconProps> = ({
|
|
9
|
+
size = 16,
|
|
10
|
+
strokeColor = "currentColor",
|
|
11
|
+
...props
|
|
12
|
+
}) => (
|
|
13
|
+
<svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 16 16"
|
|
17
|
+
fill="none"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
{...props}
|
|
20
|
+
>
|
|
21
|
+
<path
|
|
22
|
+
d="M14 14H2M12 7.33333L8 11.3333M8 11.3333L4 7.33333M8 11.3333V2"
|
|
23
|
+
stroke={strokeColor}
|
|
24
|
+
strokeWidth={1.25}
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
export default Download02Icon;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface Download03IconProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
strokeColor?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const Download03Icon: React.FC<Download03IconProps> = ({
|
|
11
|
+
size = 24,
|
|
12
|
+
strokeColor = '#000000',
|
|
13
|
+
strokeWidth = 2,
|
|
14
|
+
}) => (
|
|
15
|
+
<Svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
fill="none"
|
|
20
|
+
>
|
|
21
|
+
<Path
|
|
22
|
+
d="M8 12L12 16M12 16L16 12M12 16V8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
|
23
|
+
stroke={strokeColor}
|
|
24
|
+
strokeWidth={strokeWidth}
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
</Svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
export { Download03Icon };
|
|
32
|
+
export default Download03Icon;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface Download03IconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
strokeColor?: string;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const Download03Icon: React.FC<Download03IconProps> = ({
|
|
10
|
+
size = 24,
|
|
11
|
+
strokeColor = "currentColor",
|
|
12
|
+
strokeWidth = 2,
|
|
13
|
+
...props
|
|
14
|
+
}) => (
|
|
15
|
+
<svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
fill="none"
|
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
{...props}
|
|
22
|
+
>
|
|
23
|
+
<path
|
|
24
|
+
d="M8 12L12 16M12 16L16 12M12 16V8M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z"
|
|
25
|
+
stroke={strokeColor}
|
|
26
|
+
strokeWidth={strokeWidth}
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
export default Download03Icon;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type Download04IconProps = {
|
|
5
|
+
size?: number;
|
|
6
|
+
stroke?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const Download04Icon: React.FC<Download04IconProps> = ({
|
|
11
|
+
size = 24,
|
|
12
|
+
stroke = '#000000',
|
|
13
|
+
strokeWidth = 2,
|
|
14
|
+
}) => {
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
width={size}
|
|
18
|
+
height={size}
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
fill="none"
|
|
21
|
+
>
|
|
22
|
+
<Path
|
|
23
|
+
d="M8 17L12 21M12 21L16 17M12 21V12M20 16.7428C21.2215 15.734 22 14.2079 22 12.5C22 9.46243 19.5376 7 16.5 7C16.2815 7 16.0771 6.886 15.9661 6.69774C14.6621 4.48484 12.2544 3 9.5 3C5.35786 3 2 6.35786 2 10.5C2 12.5661 2.83545 14.4371 4.18695 15.7935"
|
|
24
|
+
stroke={stroke}
|
|
25
|
+
strokeWidth={strokeWidth}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</Svg>
|
|
30
|
+
);
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { Download04Icon };
|
|
34
|
+
export default Download04Icon;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
// Download04Icon.tsx
|
|
2
|
+
"use client";
|
|
3
|
+
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
|
|
6
|
+
type Download04IconProps = {
|
|
7
|
+
size?: number;
|
|
8
|
+
stroke?: string;
|
|
9
|
+
strokeWidth?: number;
|
|
10
|
+
className?: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
ariaLabel?: string;
|
|
13
|
+
tabIndex?: number;
|
|
14
|
+
onClick?: React.MouseEventHandler<SVGSVGElement>;
|
|
15
|
+
onKeyDown?: React.KeyboardEventHandler<SVGSVGElement>;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
const Download04Icon: React.FC<Download04IconProps> = ({
|
|
19
|
+
size = 24,
|
|
20
|
+
stroke = "currentColor",
|
|
21
|
+
strokeWidth = 2,
|
|
22
|
+
className = "",
|
|
23
|
+
title,
|
|
24
|
+
ariaLabel,
|
|
25
|
+
tabIndex,
|
|
26
|
+
onClick,
|
|
27
|
+
onKeyDown,
|
|
28
|
+
}) => {
|
|
29
|
+
const isInteractive = Boolean(onClick || onKeyDown);
|
|
30
|
+
const computedTabIndex = tabIndex ?? (isInteractive ? 0 : -1);
|
|
31
|
+
|
|
32
|
+
return (
|
|
33
|
+
<svg
|
|
34
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
35
|
+
width={size}
|
|
36
|
+
height={size}
|
|
37
|
+
viewBox="0 0 24 24"
|
|
38
|
+
fill="none"
|
|
39
|
+
role="img"
|
|
40
|
+
aria-label={ariaLabel || title || "Download"}
|
|
41
|
+
focusable={false}
|
|
42
|
+
tabIndex={computedTabIndex}
|
|
43
|
+
className={className}
|
|
44
|
+
onClick={onClick}
|
|
45
|
+
>
|
|
46
|
+
{title ? <title>{title}</title> : null}
|
|
47
|
+
<path
|
|
48
|
+
d="M8 17L12 21M12 21L16 17M12 21V12M20 16.7428C21.2215 15.734 22 14.2079 22 12.5C22 9.46243 19.5376 7 16.5 7C16.2815 7 16.0771 6.886 15.9661 6.69774C14.6621 4.48484 12.2544 3 9.5 3C5.35786 3 2 6.35786 2 10.5C2 12.5661 2.83545 14.4371 4.18695 15.7935"
|
|
49
|
+
stroke={stroke}
|
|
50
|
+
strokeWidth={strokeWidth}
|
|
51
|
+
strokeLinecap="round"
|
|
52
|
+
strokeLinejoin="round"
|
|
53
|
+
/>
|
|
54
|
+
</svg>
|
|
55
|
+
);
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
export default Download04Icon;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface DownloadCircleIconProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
stroke?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const DownloadCircleIcon: React.FC<DownloadCircleIconProps> = ({
|
|
11
|
+
size = 26,
|
|
12
|
+
stroke = '#000000',
|
|
13
|
+
strokeWidth = 2,
|
|
14
|
+
}) => (
|
|
15
|
+
<Svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 26 26"
|
|
19
|
+
fill="none"
|
|
20
|
+
stroke={stroke}
|
|
21
|
+
strokeWidth={strokeWidth}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
>
|
|
25
|
+
<Path d="M8.66797 13.0013L13.0013 17.3346M13.0013 17.3346L17.3346 13.0013M13.0013 17.3346V8.66797" />
|
|
26
|
+
<Path d="M23.8346 13.0013C23.8346 18.9844 18.9844 23.8346 13.0013 23.8346C7.01822 23.8346 2.16797 18.9844 2.16797 13.0013C2.16797 7.01822 7.01822 2.16797 13.0013 2.16797C18.9844 2.16797 23.8346 7.01822 23.8346 13.0013Z" />
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
export default DownloadCircleIcon;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
interface DownloadCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
2
|
+
/**
|
|
3
|
+
* The size of the icon (width and height).
|
|
4
|
+
* Can be a number (pixels) or a CSS size string (e.g., '1em').
|
|
5
|
+
* @default 26
|
|
6
|
+
*/
|
|
7
|
+
size?: number | string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* DownloadCircleIcon
|
|
12
|
+
*
|
|
13
|
+
* A circular download icon with an arrow pointing down inside a circle.
|
|
14
|
+
* Accepts standard SVG props and a custom `size` prop to adjust dimensions.
|
|
15
|
+
*/
|
|
16
|
+
export const DownloadCircleIcon: React.FC<DownloadCircleIconProps> = ({
|
|
17
|
+
size = 26,
|
|
18
|
+
stroke = "currentColor",
|
|
19
|
+
strokeWidth = 2,
|
|
20
|
+
className,
|
|
21
|
+
...props
|
|
22
|
+
}) => (
|
|
23
|
+
<svg
|
|
24
|
+
width={size}
|
|
25
|
+
height={size}
|
|
26
|
+
viewBox="0 0 26 26"
|
|
27
|
+
fill="none"
|
|
28
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
29
|
+
stroke={stroke}
|
|
30
|
+
strokeWidth={strokeWidth}
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
className={className}
|
|
34
|
+
{...props}
|
|
35
|
+
>
|
|
36
|
+
<path d="M8.66797 13.0013L13.0013 17.3346M13.0013 17.3346L17.3346 13.0013M13.0013 17.3346V8.66797" />
|
|
37
|
+
<path d="M23.8346 13.0013C23.8346 18.9844 18.9844 23.8346 13.0013 23.8346C7.01822 23.8346 2.16797 18.9844 2.16797 13.0013C2.16797 7.01822 7.01822 2.16797 13.0013 2.16797C18.9844 2.16797 23.8346 7.01822 23.8346 13.0013Z" />
|
|
38
|
+
</svg>
|
|
39
|
+
);
|