@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,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface TrashIconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const TrashIcon: React.FC<TrashIconProps> = ({ size = 20, color = '#000000' }) => (
|
|
10
|
+
<Svg width={size} height={size} viewBox="0 0 20 20" fill="none">
|
|
11
|
+
<Path
|
|
12
|
+
d="M13.3333 5.0013V4.33464C13.3333 3.40121 13.3333 2.9345 13.1517 2.57798C12.9919 2.26438 12.7369 2.00941 12.4233 1.84962C12.0668 1.66797 11.6001 1.66797 10.6667 1.66797H9.33333C8.39991 1.66797 7.9332 1.66797 7.57668 1.84962C7.26308 2.00941 7.00811 2.26438 6.84832 2.57798C6.66667 2.9345 6.66667 3.40121 6.66667 4.33464V5.0013M8.33333 9.58464V13.7513M11.6667 9.58464V13.7513M2.5 5.0013H17.5M15.8333 5.0013V14.3346C15.8333 15.7348 15.8333 16.4348 15.5608 16.9696C15.3212 17.44 14.9387 17.8225 14.4683 18.0622C13.9335 18.3346 13.2335 18.3346 11.8333 18.3346H8.16667C6.76654 18.3346 6.06647 18.3346 5.53169 18.0622C5.06129 17.8225 4.67883 17.44 4.43915 16.9696C4.16667 16.4348 4.16667 15.7348 4.16667 14.3346V5.0013"
|
|
13
|
+
stroke={color}
|
|
14
|
+
strokeWidth="1.5"
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export { TrashIcon };
|
|
22
|
+
export default TrashIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const TrashIcon: React.FC<IconProps> = ({ size = 20, color = "currentColor" }) => (
|
|
9
|
+
<svg width={size} height={size} viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
10
|
+
<path
|
|
11
|
+
d="M13.3333 5.0013V4.33464C13.3333 3.40121 13.3333 2.9345 13.1517 2.57798C12.9919 2.26438 12.7369 2.00941 12.4233 1.84962C12.0668 1.66797 11.6001 1.66797 10.6667 1.66797H9.33333C8.39991 1.66797 7.9332 1.66797 7.57668 1.84962C7.26308 2.00941 7.00811 2.26438 6.84832 2.57798C6.66667 2.9345 6.66667 3.40121 6.66667 4.33464V5.0013M8.33333 9.58464V13.7513M11.6667 9.58464V13.7513M2.5 5.0013H17.5M15.8333 5.0013V14.3346C15.8333 15.7348 15.8333 16.4348 15.5608 16.9696C15.3212 17.44 14.9387 17.8225 14.4683 18.0622C13.9335 18.3346 13.2335 18.3346 11.8333 18.3346H8.16667C6.76654 18.3346 6.06647 18.3346 5.53169 18.0622C5.06129 17.8225 4.67883 17.44 4.43915 16.9696C4.16667 16.4348 4.16667 15.7348 4.16667 14.3346V5.0013"
|
|
12
|
+
stroke={color}
|
|
13
|
+
strokeWidth="1.5"
|
|
14
|
+
strokeLinecap="round"
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
vectorEffect="non-scaling-stroke"
|
|
17
|
+
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
export default TrashIcon;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface XIconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const XIcon: React.FC<XIconProps> = ({ size = 16, strokeWidth = 1, color = '#000000' }) => (
|
|
11
|
+
<Svg width={size} height={size} viewBox="0 0 16 16" fill="none">
|
|
12
|
+
<Path
|
|
13
|
+
d="M11.3327 4.66797L4.66602 11.3346M4.66602 4.66797L11.3327 11.3346"
|
|
14
|
+
stroke={color}
|
|
15
|
+
strokeWidth={strokeWidth}
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
export { XIcon };
|
|
23
|
+
export default XIcon;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const XIcon: React.FC<IconProps> = ({ size = 16, strokeWidth = 1, color = "currentColor" }) => (
|
|
10
|
+
<svg width={size} height={size} viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
11
|
+
<path
|
|
12
|
+
d="M11.3327 4.66797L4.66602 11.3346M4.66602 4.66797L11.3327 11.3346"
|
|
13
|
+
stroke={color}
|
|
14
|
+
strokeWidth={strokeWidth}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export default XIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export { default as CheckIcon } from './CheckIcon';
|
|
2
|
+
export { default as Copy02Icon } from './Copy02Icon';
|
|
3
|
+
export { Copy06Icon } from './Copy06Icon';
|
|
4
|
+
export { default as CopyIcon } from './CopyIcon';
|
|
5
|
+
export { default as Expand01Icon } from './Expand01Icon';
|
|
6
|
+
export { default as LogoutIcon } from './LogoutIcon';
|
|
7
|
+
export { default as MinCircleIcon } from './MinCircleIcon';
|
|
8
|
+
export { default as MinimiseIcon } from './MinimiseIcon';
|
|
9
|
+
export { default as MinusIcon } from './MinusIcon';
|
|
10
|
+
export { default as MoreOptionsIcon } from './MoreOptionsIcon';
|
|
11
|
+
export { default as MoveIcon } from './MoveIcon';
|
|
12
|
+
export { default as PencilIcon } from './PencilIcon';
|
|
13
|
+
export { default as PlusCircleIcon } from './PlusCircleIcon';
|
|
14
|
+
export { default as PlusIcon } from './PlusIcon';
|
|
15
|
+
export { RefreshIcon } from './RefreshIcon';
|
|
16
|
+
export { default as ResetIcon } from './ResetIcon';
|
|
17
|
+
export { default as SettingsIcon } from './SettingsIcon';
|
|
18
|
+
export { default as SlidersIcon } from './SlidersIcon';
|
|
19
|
+
export { default as SmallMagnifyIcon } from './SmallMagnifyIcon';
|
|
20
|
+
export { default as Trash02Icon } from './Trash02Icon';
|
|
21
|
+
export { default as TrashIcon } from './TrashIcon';
|
|
22
|
+
export { default as XIcon } from './XIcon';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type AlertTriangleIconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
stroke?: string;
|
|
7
|
+
strokeWidth?: number | string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const AlertTriangleIcon = ({
|
|
11
|
+
size = 18,
|
|
12
|
+
stroke = '#FF0000',
|
|
13
|
+
strokeWidth = 1.5,
|
|
14
|
+
}: AlertTriangleIconProps) => (
|
|
15
|
+
<Svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 18 18"
|
|
19
|
+
fill="none"
|
|
20
|
+
stroke={stroke}
|
|
21
|
+
strokeWidth={strokeWidth}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
>
|
|
25
|
+
<Path d="M8.99982 6.7492V9.7492M8.99982 12.7492H9.00732M7.9613 2.91799L1.79264 13.573C1.45049 14.1639 1.27941 14.4594 1.30469 14.702C1.32675 14.9135 1.43758 15.1057 1.60959 15.2308C1.80681 15.3742 2.14826 15.3742 2.83115 15.3742H15.1685C15.8514 15.3742 16.1928 15.3742 16.39 15.2308C16.5621 15.1057 16.6729 14.9135 16.6949 14.702C16.7202 14.4594 16.5491 14.1639 16.207 13.573L10.0383 2.91799C9.6974 2.32911 9.52694 2.03468 9.30454 1.93579C9.11055 1.84953 8.88908 1.84953 8.69509 1.93579C8.47269 2.03468 8.30223 2.32912 7.9613 2.91799Z" />
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
AlertTriangleIcon.displayName = 'AlertTriangleIcon';
|
|
30
|
+
|
|
31
|
+
export { AlertTriangleIcon };
|
|
32
|
+
export default AlertTriangleIcon;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type AlertTriangleIconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
stroke?: string;
|
|
6
|
+
strokeWidth?: number | string;
|
|
7
|
+
title?: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const AlertTriangleIcon = React.forwardRef<
|
|
11
|
+
SVGSVGElement,
|
|
12
|
+
AlertTriangleIconProps
|
|
13
|
+
>(
|
|
14
|
+
(
|
|
15
|
+
{
|
|
16
|
+
size = 18,
|
|
17
|
+
stroke = "#FF0000",
|
|
18
|
+
strokeWidth = 1.5,
|
|
19
|
+
className,
|
|
20
|
+
title,
|
|
21
|
+
...rest
|
|
22
|
+
},
|
|
23
|
+
ref,
|
|
24
|
+
) => (
|
|
25
|
+
<svg
|
|
26
|
+
ref={ref}
|
|
27
|
+
width={size}
|
|
28
|
+
height={size}
|
|
29
|
+
viewBox="0 0 18 18"
|
|
30
|
+
fill="none"
|
|
31
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
32
|
+
stroke={stroke}
|
|
33
|
+
strokeWidth={strokeWidth}
|
|
34
|
+
strokeLinecap="round"
|
|
35
|
+
strokeLinejoin="round"
|
|
36
|
+
role={title ? "img" : "presentation"}
|
|
37
|
+
aria-label={title}
|
|
38
|
+
className={className}
|
|
39
|
+
{...rest}
|
|
40
|
+
>
|
|
41
|
+
{title ? <title>{title}</title> : null}
|
|
42
|
+
<path d="M8.99982 6.7492V9.7492M8.99982 12.7492H9.00732M7.9613 2.91799L1.79264 13.573C1.45049 14.1639 1.27941 14.4594 1.30469 14.702C1.32675 14.9135 1.43758 15.1057 1.60959 15.2308C1.80681 15.3742 2.14826 15.3742 2.83115 15.3742H15.1685C15.8514 15.3742 16.1928 15.3742 16.39 15.2308C16.5621 15.1057 16.6729 14.9135 16.6949 14.702C16.7202 14.4594 16.5491 14.1639 16.207 13.573L10.0383 2.91799C9.6974 2.32911 9.52694 2.03468 9.30454 1.93579C9.11055 1.84953 8.88908 1.84953 8.69509 1.93579C8.47269 2.03468 8.30223 2.32912 7.9613 2.91799Z" />
|
|
43
|
+
</svg>
|
|
44
|
+
),
|
|
45
|
+
);
|
|
46
|
+
|
|
47
|
+
AlertTriangleIcon.displayName = "AlertTriangleIcon";
|
|
48
|
+
|
|
49
|
+
export default AlertTriangleIcon;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface BellIconProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const BellIcon = ({ size = 18 }: BellIconProps) => {
|
|
9
|
+
return (
|
|
10
|
+
<Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
|
|
11
|
+
<Path
|
|
12
|
+
d="M10.4996 15.75H7.49959M13.4996 6C13.4996 4.80653 13.0255 3.66193 12.1816 2.81802C11.3377 1.97411 10.1931 1.5 8.99959 1.5C7.80611 1.5 6.66152 1.97411 5.81761 2.81802C4.97369 3.66193 4.49959 4.80653 4.49959 6C4.49959 8.31764 3.91494 9.90447 3.26184 10.9541C2.71093 11.8394 2.43548 12.2821 2.44558 12.4056C2.45676 12.5423 2.48573 12.5944 2.59592 12.6762C2.69543 12.75 3.14403 12.75 4.04123 12.75H13.9579C14.8551 12.75 15.3037 12.75 15.4033 12.6762C15.5134 12.5944 15.5424 12.5423 15.5536 12.4056C15.5637 12.2821 15.2882 11.8394 14.7373 10.9541C14.0842 9.90447 13.4996 8.31764 13.4996 6Z"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeWidth="1.5"
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
</Svg>
|
|
19
|
+
);
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export { BellIcon };
|
|
23
|
+
export default BellIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
interface BellIconProps {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export default function BellIcon({ size = 18, className }: BellIconProps) {
|
|
9
|
+
return (
|
|
10
|
+
<svg
|
|
11
|
+
className={className}
|
|
12
|
+
width={size}
|
|
13
|
+
height={size}
|
|
14
|
+
viewBox="0 0 18 18"
|
|
15
|
+
fill="none"
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
>
|
|
18
|
+
<path
|
|
19
|
+
d="M10.4996 15.75H7.49959M13.4996 6C13.4996 4.80653 13.0255 3.66193 12.1816 2.81802C11.3377 1.97411 10.1931 1.5 8.99959 1.5C7.80611 1.5 6.66152 1.97411 5.81761 2.81802C4.97369 3.66193 4.49959 4.80653 4.49959 6C4.49959 8.31764 3.91494 9.90447 3.26184 10.9541C2.71093 11.8394 2.43548 12.2821 2.44558 12.4056C2.45676 12.5423 2.48573 12.5944 2.59592 12.6762C2.69543 12.75 3.14403 12.75 4.04123 12.75H13.9579C14.8551 12.75 15.3037 12.75 15.4033 12.6762C15.5134 12.5944 15.5424 12.5423 15.5536 12.4056C15.5637 12.2821 15.2882 11.8394 14.7373 10.9541C14.0842 9.90447 13.4996 8.31764 13.4996 6Z"
|
|
20
|
+
stroke="currentColor"
|
|
21
|
+
strokeWidth="1.5"
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type CheckCircleIconProps = {
|
|
5
|
+
size?: number;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const CheckCircleIcon = ({ size = 13, strokeWidth = 1.5 }: CheckCircleIconProps) => {
|
|
10
|
+
if (size <= 0) return null;
|
|
11
|
+
|
|
12
|
+
return (
|
|
13
|
+
<Svg width={size} height={size} viewBox="0 0 13 13" fill="none">
|
|
14
|
+
<Path
|
|
15
|
+
d="M4.06266 6.4987L5.68766 8.1237L8.93766 4.8737M11.9168 6.4987C11.9168 9.49024 9.49171 11.9154 6.50016 11.9154C3.50862 11.9154 1.0835 9.49024 1.0835 6.4987C1.0835 3.50716 3.50862 1.08203 6.50016 1.08203C9.49171 1.08203 11.9168 3.50716 11.9168 6.4987Z"
|
|
16
|
+
stroke="currentColor"
|
|
17
|
+
strokeWidth={strokeWidth}
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
strokeLinejoin="round"
|
|
20
|
+
/>
|
|
21
|
+
</Svg>
|
|
22
|
+
);
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
CheckCircleIcon.displayName = 'CheckCircleIcon';
|
|
26
|
+
|
|
27
|
+
export { CheckCircleIcon };
|
|
28
|
+
export default CheckCircleIcon;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type CheckIconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
size?: number;
|
|
5
|
+
title?: string;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const CheckCircleIcon = React.forwardRef<SVGSVGElement, CheckIconProps>(
|
|
10
|
+
(
|
|
11
|
+
{ size = 13, className, title = "Check icon", strokeWidth = 1.5, ...rest },
|
|
12
|
+
ref,
|
|
13
|
+
) => {
|
|
14
|
+
if (size <= 0) return null;
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<svg
|
|
18
|
+
ref={ref}
|
|
19
|
+
width={size}
|
|
20
|
+
height={size}
|
|
21
|
+
viewBox="0 0 13 13"
|
|
22
|
+
fill="none"
|
|
23
|
+
role="img"
|
|
24
|
+
aria-label={title}
|
|
25
|
+
focusable={false}
|
|
26
|
+
className={className}
|
|
27
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
28
|
+
{...rest}
|
|
29
|
+
>
|
|
30
|
+
{title ? <title>{title}</title> : null}
|
|
31
|
+
<path
|
|
32
|
+
d="M4.06266 6.4987L5.68766 8.1237L8.93766 4.8737M11.9168 6.4987C11.9168 9.49024 9.49171 11.9154 6.50016 11.9154C3.50862 11.9154 1.0835 9.49024 1.0835 6.4987C1.0835 3.50716 3.50862 1.08203 6.50016 1.08203C9.49171 1.08203 11.9168 3.50716 11.9168 6.4987Z"
|
|
33
|
+
stroke="currentColor"
|
|
34
|
+
strokeWidth={strokeWidth}
|
|
35
|
+
strokeLinecap="round"
|
|
36
|
+
strokeLinejoin="round"
|
|
37
|
+
/>
|
|
38
|
+
</svg>
|
|
39
|
+
);
|
|
40
|
+
},
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
CheckCircleIcon.displayName = "CheckCircleIcon";
|
|
44
|
+
export default CheckCircleIcon;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface InfoCircleIconProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
strokeColor?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const InfoCircleIcon: React.FC<InfoCircleIconProps> = ({
|
|
10
|
+
size = 18,
|
|
11
|
+
strokeColor = '#000000',
|
|
12
|
+
}) => (
|
|
13
|
+
<Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
|
|
14
|
+
<G clipPath="url(#infoCircleClip)">
|
|
15
|
+
<Path
|
|
16
|
+
d="M9 12V9M9 6H9.0075M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z"
|
|
17
|
+
stroke={strokeColor}
|
|
18
|
+
strokeWidth={1.5}
|
|
19
|
+
strokeLinecap="round"
|
|
20
|
+
strokeLinejoin="round"
|
|
21
|
+
/>
|
|
22
|
+
</G>
|
|
23
|
+
<Defs>
|
|
24
|
+
<ClipPath id="infoCircleClip">
|
|
25
|
+
<Rect width="18" height="18" fill="white" />
|
|
26
|
+
</ClipPath>
|
|
27
|
+
</Defs>
|
|
28
|
+
</Svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
export { InfoCircleIcon };
|
|
32
|
+
export default InfoCircleIcon;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface InfoCircleIconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
/** The size of the icon (width and height) */
|
|
5
|
+
size?: number | string;
|
|
6
|
+
/** Stroke color */
|
|
7
|
+
strokeColor?: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const InfoCircleIcon: React.FC<InfoCircleIconProps> = ({
|
|
11
|
+
size = 18,
|
|
12
|
+
strokeColor = "currentColor",
|
|
13
|
+
...props
|
|
14
|
+
}) => (
|
|
15
|
+
<svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 18 18"
|
|
19
|
+
fill="none"
|
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
{...props}
|
|
22
|
+
>
|
|
23
|
+
<g clipPath="url(#infoCircleClip)">
|
|
24
|
+
<path
|
|
25
|
+
d="M9 12V9M9 6H9.0075M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z"
|
|
26
|
+
stroke={strokeColor}
|
|
27
|
+
strokeWidth={1.5}
|
|
28
|
+
strokeLinecap="round"
|
|
29
|
+
strokeLinejoin="round"
|
|
30
|
+
/>
|
|
31
|
+
</g>
|
|
32
|
+
<defs>
|
|
33
|
+
<clipPath id="infoCircleClip">
|
|
34
|
+
<rect width="18" height="18" fill="white" />
|
|
35
|
+
</clipPath>
|
|
36
|
+
</defs>
|
|
37
|
+
</svg>
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
export default InfoCircleIcon;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface InfoIconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const InfoIcon: React.FC<InfoIconProps> = ({ size = 18, color = '#000000', strokeWidth = 1.5 }) => (
|
|
11
|
+
<Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
|
|
12
|
+
<G clipPath="url(#clip0_info)">
|
|
13
|
+
<Path
|
|
14
|
+
d="M9 12V9M9 6H9.0075M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z"
|
|
15
|
+
stroke={color}
|
|
16
|
+
strokeWidth={strokeWidth}
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
</G>
|
|
21
|
+
<Defs>
|
|
22
|
+
<ClipPath id="clip0_info">
|
|
23
|
+
<Rect width="18" height="18" fill="white" />
|
|
24
|
+
</ClipPath>
|
|
25
|
+
</Defs>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
export { InfoIcon };
|
|
30
|
+
export default InfoIcon;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const InfoIcon: React.FC<IconProps> = ({ size = 18, color = "currentColor", strokeWidth = 1.5 }) => (
|
|
10
|
+
<svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 18 18"
|
|
14
|
+
fill="none"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
>
|
|
17
|
+
<g clipPath="url(#clip0_info)">
|
|
18
|
+
<path
|
|
19
|
+
d="M9 12V9M9 6H9.0075M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z"
|
|
20
|
+
stroke={color}
|
|
21
|
+
strokeWidth={strokeWidth}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
</g>
|
|
26
|
+
<defs>
|
|
27
|
+
<clipPath id="clip0_info">
|
|
28
|
+
<rect width="18" height="18" fill="white" />
|
|
29
|
+
</clipPath>
|
|
30
|
+
</defs>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
export default InfoIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface InfoSquareIconProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
strokeColor?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const InfoSquareIcon: React.FC<InfoSquareIconProps> = ({
|
|
10
|
+
size = 18,
|
|
11
|
+
strokeColor = '#000000',
|
|
12
|
+
}) => (
|
|
13
|
+
<Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
|
|
14
|
+
<Path
|
|
15
|
+
d="M9 12V9M9 6H9.0075M5.85 15.75H12.15C13.4101 15.75 14.0402 15.75 14.5215 15.5048C14.9448 15.289 15.289 14.9448 15.5048 14.5215C15.75 14.0402 15.75 13.4101 15.75 12.15V5.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.85V12.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.75Z"
|
|
16
|
+
stroke={strokeColor}
|
|
17
|
+
strokeWidth={1.5}
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
strokeLinejoin="round"
|
|
20
|
+
/>
|
|
21
|
+
</Svg>
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
export { InfoSquareIcon };
|
|
25
|
+
export default InfoSquareIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface InfoSquareIconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
strokeColor?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const InfoSquareIcon: React.FC<InfoSquareIconProps> = ({
|
|
9
|
+
size = 18,
|
|
10
|
+
strokeColor = "currentColor",
|
|
11
|
+
...props
|
|
12
|
+
}) => (
|
|
13
|
+
<svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 18 18"
|
|
17
|
+
fill="none"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
{...props}
|
|
20
|
+
>
|
|
21
|
+
<path
|
|
22
|
+
d="M9 12V9M9 6H9.0075M5.85 15.75H12.15C13.4101 15.75 14.0402 15.75 14.5215 15.5048C14.9448 15.289 15.289 14.9448 15.5048 14.5215C15.75 14.0402 15.75 13.4101 15.75 12.15V5.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.85V12.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.75Z"
|
|
23
|
+
stroke={strokeColor}
|
|
24
|
+
strokeWidth={1.5}
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
export default InfoSquareIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type SlashCircleProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number | string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export const SlashCircleIcon: React.FC<SlashCircleProps> = ({
|
|
11
|
+
size = 16,
|
|
12
|
+
color = '#000000',
|
|
13
|
+
strokeWidth = 1.25,
|
|
14
|
+
}) => (
|
|
15
|
+
<Svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 16 16"
|
|
19
|
+
fill="none"
|
|
20
|
+
stroke={color}
|
|
21
|
+
strokeWidth={strokeWidth}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
>
|
|
25
|
+
<G clipPath="url(#clip0_6138_11730)">
|
|
26
|
+
<Path d="M3.28683 3.28732L12.7135 12.714M14.6668 8.00065C14.6668 11.6826 11.6821 14.6673 8.00016 14.6673C4.31826 14.6673 1.3335 11.6826 1.3335 8.00065C1.3335 4.31875 4.31826 1.33398 8.00016 1.33398C11.6821 1.33398 14.6668 4.31875 14.6668 8.00065Z" />
|
|
27
|
+
</G>
|
|
28
|
+
<Defs>
|
|
29
|
+
<ClipPath id="clip0_6138_11730">
|
|
30
|
+
<Rect width="16" height="16" fill="white" />
|
|
31
|
+
</ClipPath>
|
|
32
|
+
</Defs>
|
|
33
|
+
</Svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export default SlashCircleIcon;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
type SlashCircleProps = {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
className?: string;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number | string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export const SlashCircleIcon: React.FC<SlashCircleProps> = ({
|
|
11
|
+
size = 16,
|
|
12
|
+
className = "",
|
|
13
|
+
color = "currentColor",
|
|
14
|
+
strokeWidth = 1.25,
|
|
15
|
+
...props
|
|
16
|
+
}) => (
|
|
17
|
+
<svg
|
|
18
|
+
width={size}
|
|
19
|
+
height={size}
|
|
20
|
+
viewBox="0 0 16 16"
|
|
21
|
+
fill="none"
|
|
22
|
+
className={className}
|
|
23
|
+
stroke={color}
|
|
24
|
+
strokeWidth={strokeWidth}
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
28
|
+
{...props}
|
|
29
|
+
>
|
|
30
|
+
<g clipPath="url(#clip0_6138_11730)">
|
|
31
|
+
<path
|
|
32
|
+
d="M3.28683 3.28732L12.7135 12.714M14.6668 8.00065C14.6668 11.6826 11.6821 14.6673 8.00016 14.6673C4.31826 14.6673 1.3335 11.6826 1.3335 8.00065C1.3335 4.31875 4.31826 1.33398 8.00016 1.33398C11.6821 1.33398 14.6668 4.31875 14.6668 8.00065Z"
|
|
33
|
+
// No fill needed, stroke comes from parent <svg>
|
|
34
|
+
/>
|
|
35
|
+
</g>
|
|
36
|
+
<defs>
|
|
37
|
+
<clipPath id="clip0_6138_11730">
|
|
38
|
+
<rect width="16" height="16" fill="white" />
|
|
39
|
+
</clipPath>
|
|
40
|
+
</defs>
|
|
41
|
+
</svg>
|
|
42
|
+
);
|
|
43
|
+
|
|
44
|
+
// Usage Example
|
|
45
|
+
/*
|
|
46
|
+
<SlashCircleIcon size={24} color="#444" strokeWidth={2} className="my-2" />
|
|
47
|
+
*/
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type XCircleIconProps = {
|
|
5
|
+
size?: number;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const XCircleIcon = ({ size = 16, strokeWidth = 1.5 }: XCircleIconProps) => {
|
|
10
|
+
if (size <= 0) return null;
|
|
11
|
+
|
|
12
|
+
return (
|
|
13
|
+
<Svg width={size} height={size} viewBox="0 0 16 16" fill="none">
|
|
14
|
+
<Path
|
|
15
|
+
d="M10.0002 5.99967L6.00016 9.99967M6.00016 5.99967L10.0002 9.99967M14.6668 7.99967C14.6668 11.6816 11.6821 14.6663 8.00016 14.6663C4.31826 14.6663 1.3335 11.6816 1.3335 7.99967C1.3335 4.31778 4.31826 1.33301 8.00016 1.33301C11.6821 1.33301 14.6668 4.31778 14.6668 7.99967Z"
|
|
16
|
+
stroke="currentColor"
|
|
17
|
+
strokeWidth={strokeWidth}
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
strokeLinejoin="round"
|
|
20
|
+
/>
|
|
21
|
+
</Svg>
|
|
22
|
+
);
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
XCircleIcon.displayName = 'XCircleIcon';
|
|
26
|
+
|
|
27
|
+
export { XCircleIcon };
|
|
28
|
+
export default XCircleIcon;
|