@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,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
type IconProps = {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export const Share01Icon: 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="M15.75 9V12.15C15.75 13.4101 15.75 14.0402 15.5048 14.5215C15.289 14.9448 14.9448 15.289 14.5215 15.5048C14.0402 15.75 13.4101 15.75 12.15 15.75H5.85C4.58988 15.75 3.95982 15.75 3.47852 15.5048C3.05516 15.289 2.71095 14.9448 2.49524 14.5215C2.25 14.0402 2.25 13.4101 2.25 12.15V9M12 5.25L9 2.25M9 2.25L6 5.25M9 2.25V11.25"
|
|
26
|
+
stroke={color}
|
|
27
|
+
strokeWidth="1.25"
|
|
28
|
+
strokeLinecap="round"
|
|
29
|
+
strokeLinejoin="round"
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
@@ -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
|
+
strokeWidth?: number;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const ShareIcon: React.FC<Props> = ({ size = 18, strokeWidth = 1.5 }) => (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 17 17"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
opacity={0.9}
|
|
18
|
+
d="M14.875 6.37501L14.875 2.12501M14.875 2.12501H10.625M14.875 2.12501L8.5 8.5M7.08333 2.125H5.525C4.33489 2.125 3.73983 2.125 3.28527 2.35661C2.88543 2.56034 2.56034 2.88543 2.35661 3.28527C2.125 3.73983 2.125 4.33489 2.125 5.525V11.475C2.125 12.6651 2.125 13.2602 2.35661 13.7147C2.56034 14.1146 2.88543 14.4397 3.28527 14.6434C3.73983 14.875 4.33489 14.875 5.525 14.875H11.475C12.6651 14.875 13.2602 14.875 13.7147 14.6434C14.1146 14.4397 14.4397 14.1146 14.6434 13.7147C14.875 13.2602 14.875 12.6651 14.875 11.475V9.91667"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
strokeWidth={strokeWidth}
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
export { ShareIcon };
|
|
28
|
+
export default ShareIcon;
|
|
@@ -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 ShareIcon = React.forwardRef<SVGSVGElement, Props>(
|
|
9
|
+
({ size = 18, strokeWidth = 1.5, ...props }, ref) => (
|
|
10
|
+
<svg
|
|
11
|
+
ref={ref}
|
|
12
|
+
width={size}
|
|
13
|
+
height={size}
|
|
14
|
+
viewBox="0 0 17 17"
|
|
15
|
+
fill="none"
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
opacity={0.9}
|
|
21
|
+
d="M14.875 6.37501L14.875 2.12501M14.875 2.12501H10.625M14.875 2.12501L8.5 8.5M7.08333 2.125H5.525C4.33489 2.125 3.73983 2.125 3.28527 2.35661C2.88543 2.56034 2.56034 2.88543 2.35661 3.28527C2.125 3.73983 2.125 4.33489 2.125 5.525V11.475C2.125 12.6651 2.125 13.2602 2.35661 13.7147C2.56034 14.1146 2.88543 14.4397 3.28527 14.6434C3.73983 14.875 4.33489 14.875 5.525 14.875H11.475C12.6651 14.875 13.2602 14.875 13.7147 14.6434C14.1146 14.4397 14.4397 14.1146 14.6434 13.7147C14.875 13.2602 14.875 12.6651 14.875 11.475V9.91667"
|
|
22
|
+
stroke="currentColor"
|
|
23
|
+
strokeWidth={strokeWidth}
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
</svg>
|
|
28
|
+
)
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
ShareIcon.displayName = "ShareIcon";
|
|
32
|
+
|
|
33
|
+
export default ShareIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type StarIconProps = {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
filled?: boolean;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
const StarIcon: React.FC<StarIconProps> = ({
|
|
12
|
+
size = 18,
|
|
13
|
+
color = '#000000',
|
|
14
|
+
strokeWidth = 1.5,
|
|
15
|
+
filled = true,
|
|
16
|
+
}) => {
|
|
17
|
+
return (
|
|
18
|
+
<Svg
|
|
19
|
+
width={size}
|
|
20
|
+
height={size}
|
|
21
|
+
viewBox="0 0 18 18"
|
|
22
|
+
>
|
|
23
|
+
<Path
|
|
24
|
+
d="M8.46101 2.59041C8.63388 2.24021 8.72031 2.06511 8.83764 2.00916C8.93973 1.96049 9.05834 1.96049 9.16043 2.00916C9.27776 2.06511 9.3642 2.24021 9.53706 2.59041L11.1771 5.91289C11.2281 6.01628 11.2536 6.06797 11.2909 6.10811C11.3239 6.14365 11.3635 6.17244 11.4075 6.19289C11.4572 6.21599 11.5142 6.22433 11.6283 6.24101L15.2968 6.77721C15.6831 6.83367 15.8762 6.8619 15.9656 6.95625C16.0434 7.03835 16.08 7.15115 16.0652 7.26326C16.0481 7.39211 15.9083 7.52831 15.6286 7.80071L12.9751 10.3852C12.8924 10.4658 12.851 10.5061 12.8243 10.554C12.8007 10.5965 12.7856 10.6431 12.7797 10.6913C12.7731 10.7458 12.7829 10.8027 12.8024 10.9165L13.4285 14.567C13.4945 14.952 13.5275 15.1446 13.4655 15.2588C13.4115 15.3582 13.3155 15.4279 13.2043 15.4485C13.0765 15.4722 12.9036 15.3813 12.5579 15.1995L9.27831 13.4748C9.17612 13.4211 9.12503 13.3942 9.0712 13.3836C9.02355 13.3743 8.97453 13.3743 8.92687 13.3836C8.87304 13.3942 8.82195 13.4211 8.71977 13.4748L5.44022 15.1995C5.09446 15.3813 4.92158 15.4722 4.79375 15.4485C4.68253 15.4279 4.58657 15.3582 4.53258 15.2588C4.47052 15.1446 4.50354 14.952 4.56958 14.567L5.19569 10.9165C5.21521 10.8027 5.22497 10.7458 5.21836 10.6913C5.21252 10.6431 5.19736 10.5965 5.17373 10.554C5.14704 10.5061 5.10568 10.4658 5.02296 10.3852L2.36944 7.80071C2.08977 7.52831 1.94993 7.39211 1.93292 7.26326C1.91811 7.15115 1.95469 7.03835 2.03246 6.95625C2.12185 6.8619 2.315 6.83367 2.70131 6.77721L6.36976 6.24101C6.48384 6.22433 6.54088 6.21599 6.59056 6.19289C6.63455 6.17244 6.67414 6.14365 6.70716 6.10811C6.74445 6.06797 6.76997 6.01628 6.821 5.91289L8.46101 2.59041Z"
|
|
25
|
+
stroke={color}
|
|
26
|
+
strokeWidth={strokeWidth}
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
fill={filled ? color : 'none'}
|
|
30
|
+
/>
|
|
31
|
+
</Svg>
|
|
32
|
+
);
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export { StarIcon };
|
|
36
|
+
export default StarIcon;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// StarIcon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
|
|
4
|
+
export default function StarIcon({
|
|
5
|
+
size = 18,
|
|
6
|
+
className = "",
|
|
7
|
+
strokeWidth = 1.5,
|
|
8
|
+
filled = true, // <-- new prop
|
|
9
|
+
...props
|
|
10
|
+
}: any) {
|
|
11
|
+
return (
|
|
12
|
+
<svg
|
|
13
|
+
width={size}
|
|
14
|
+
height={size}
|
|
15
|
+
viewBox="0 0 18 18"
|
|
16
|
+
className={className}
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
d="M8.46101 2.59041C8.63388 2.24021 8.72031 2.06511 8.83764 2.00916C8.93973 1.96049 9.05834 1.96049 9.16043 2.00916C9.27776 2.06511 9.3642 2.24021 9.53706 2.59041L11.1771 5.91289C11.2281 6.01628 11.2536 6.06797 11.2909 6.10811C11.3239 6.14365 11.3635 6.17244 11.4075 6.19289C11.4572 6.21599 11.5142 6.22433 11.6283 6.24101L15.2968 6.77721C15.6831 6.83367 15.8762 6.8619 15.9656 6.95625C16.0434 7.03835 16.08 7.15115 16.0652 7.26326C16.0481 7.39211 15.9083 7.52831 15.6286 7.80071L12.9751 10.3852C12.8924 10.4658 12.851 10.5061 12.8243 10.554C12.8007 10.5965 12.7856 10.6431 12.7797 10.6913C12.7731 10.7458 12.7829 10.8027 12.8024 10.9165L13.4285 14.567C13.4945 14.952 13.5275 15.1446 13.4655 15.2588C13.4115 15.3582 13.3155 15.4279 13.2043 15.4485C13.0765 15.4722 12.9036 15.3813 12.5579 15.1995L9.27831 13.4748C9.17612 13.4211 9.12503 13.3942 9.0712 13.3836C9.02355 13.3743 8.97453 13.3743 8.92687 13.3836C8.87304 13.3942 8.82195 13.4211 8.71977 13.4748L5.44022 15.1995C5.09446 15.3813 4.92158 15.4722 4.79375 15.4485C4.68253 15.4279 4.58657 15.3582 4.53258 15.2588C4.47052 15.1446 4.50354 14.952 4.56958 14.567L5.19569 10.9165C5.21521 10.8027 5.22497 10.7458 5.21836 10.6913C5.21252 10.6431 5.19736 10.5965 5.17373 10.554C5.14704 10.5061 5.10568 10.4658 5.02296 10.3852L2.36944 7.80071C2.08977 7.52831 1.94993 7.39211 1.93292 7.26326C1.91811 7.15115 1.95469 7.03835 2.03246 6.95625C2.12185 6.8619 2.315 6.83367 2.70131 6.77721L6.36976 6.24101C6.48384 6.22433 6.54088 6.21599 6.59056 6.19289C6.63455 6.17244 6.67414 6.14365 6.70716 6.10811C6.74445 6.06797 6.76997 6.01628 6.821 5.91289L8.46101 2.59041Z"
|
|
21
|
+
stroke="currentColor"
|
|
22
|
+
strokeWidth={strokeWidth}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
fill={filled ? "currentColor" : "none"}
|
|
26
|
+
vectorEffect="non-scaling-stroke"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type Stars01IconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
currentColor?: string;
|
|
7
|
+
fill?: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const Stars01Icon: React.FC<Stars01IconProps> = ({
|
|
11
|
+
size = 16,
|
|
12
|
+
currentColor,
|
|
13
|
+
fill,
|
|
14
|
+
}) => {
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
viewBox="0 0 16 16"
|
|
18
|
+
width={size}
|
|
19
|
+
height={size}
|
|
20
|
+
fill={currentColor || fill || "currentColor"}
|
|
21
|
+
>
|
|
22
|
+
<G clipPath="url(#stars01-clip)">
|
|
23
|
+
<Path
|
|
24
|
+
d="M4.33398 8.66659L4.85696 9.71253C5.03395 10.0665 5.12245 10.2435 5.24067 10.3969C5.34558 10.533 5.46759 10.655 5.60369 10.7599C5.75706 10.8781 5.93405 10.9666 6.28804 11.1436L7.33398 11.6666L6.28804 12.1896C5.93405 12.3666 5.75706 12.455 5.60369 12.5733C5.46759 12.6782 5.34558 12.8002 5.24067 12.9363C5.12245 13.0897 5.03395 13.2667 4.85696 13.6206L4.33398 14.6666L3.81101 13.6206C3.63402 13.2667 3.54552 13.0897 3.4273 12.9363C3.32239 12.8002 3.20038 12.6782 3.06428 12.5733C2.91091 12.455 2.73391 12.3666 2.37993 12.1896L1.33398 11.6666L2.37993 11.1436C2.73391 10.9666 2.91091 10.8781 3.06428 10.7599C3.20038 10.655 3.32239 10.533 3.4273 10.3969C3.54552 10.2435 3.63402 10.0665 3.81101 9.71253L4.33398 8.66659Z"
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
/>
|
|
27
|
+
<Path
|
|
28
|
+
d="M10.0007 1.33325L10.7864 3.3762C10.9744 3.86502 11.0684 4.10943 11.2146 4.31501C11.3442 4.49722 11.5033 4.65642 11.6856 4.78598C11.8911 4.93216 12.1356 5.02616 12.6244 5.21417L14.6673 5.99992L12.6244 6.78567C12.1356 6.97367 11.8911 7.06768 11.6856 7.21386C11.5033 7.34342 11.3442 7.50262 11.2146 7.68482C11.0684 7.89041 10.9744 8.13482 10.7864 8.62364L10.0007 10.6666L9.2149 8.62364C9.0269 8.13482 8.93289 7.89041 8.78671 7.68482C8.65715 7.50262 8.49795 7.34342 8.31575 7.21386C8.11016 7.06768 7.86575 6.97367 7.37693 6.78567L5.33398 5.99992L7.37693 5.21417C7.86575 5.02616 8.11016 4.93216 8.31575 4.78598C8.49795 4.65642 8.65715 4.49722 8.78671 4.31501C8.93289 4.10943 9.0269 3.86502 9.2149 3.3762L10.0007 1.33325Z"
|
|
29
|
+
fill="currentColor"
|
|
30
|
+
/>
|
|
31
|
+
<Path
|
|
32
|
+
d="M4.33398 8.66659L4.85696 9.71253C5.03395 10.0665 5.12245 10.2435 5.24067 10.3969C5.34558 10.533 5.46759 10.655 5.60369 10.7599C5.75706 10.8781 5.93405 10.9666 6.28804 11.1436L7.33398 11.6666L6.28804 12.1896C5.93405 12.3666 5.75706 12.455 5.60369 12.5733C5.46759 12.6782 5.34558 12.8002 5.24067 12.9363C5.12245 13.0897 5.03395 13.2667 4.85696 13.6206L4.33398 14.6666L3.81101 13.6206C3.63402 13.2667 3.54552 13.0897 3.4273 12.9363C3.32239 12.8002 3.20038 12.6782 3.06428 12.5733C2.91091 12.455 2.73391 12.3666 2.37993 12.1896L1.33398 11.6666L2.37993 11.1436C2.73391 10.9666 2.91091 10.8781 3.06428 10.7599C3.20038 10.655 3.32239 10.533 3.4273 10.3969C3.54552 10.2435 3.63402 10.0665 3.81101 9.71253L4.33398 8.66659Z"
|
|
33
|
+
stroke="currentColor"
|
|
34
|
+
strokeWidth="1.25"
|
|
35
|
+
strokeLinecap="round"
|
|
36
|
+
strokeLinejoin="round"
|
|
37
|
+
/>
|
|
38
|
+
<Path
|
|
39
|
+
d="M10.0007 1.33325L10.7864 3.3762C10.9744 3.86502 11.0684 4.10943 11.2146 4.31501C11.3442 4.49722 11.5033 4.65642 11.6856 4.78598C11.8911 4.93216 12.1356 5.02616 12.6244 5.21417L14.6673 5.99992L12.6244 6.78567C12.1356 6.97367 11.8911 7.06768 11.6856 7.21386C11.5033 7.34342 11.3442 7.50262 11.2146 7.68482C11.0684 7.89041 10.9744 8.13482 10.7864 8.62364L10.0007 10.6666L9.2149 8.62364C9.0269 8.13482 8.93289 7.89041 8.78671 7.68482C8.65715 7.50262 8.49795 7.34342 8.31575 7.21386C8.11016 7.06768 7.86575 6.97367 7.37693 6.78567L5.33398 5.99992L7.37693 5.21417C7.86575 5.02616 8.11016 4.93216 8.31575 4.78598C8.49795 4.65642 8.65715 4.49722 8.78671 4.31501C8.93289 4.10943 9.0269 3.86502 9.2149 3.3762L10.0007 1.33325Z"
|
|
40
|
+
stroke="currentColor"
|
|
41
|
+
strokeWidth="1.25"
|
|
42
|
+
strokeLinecap="round"
|
|
43
|
+
strokeLinejoin="round"
|
|
44
|
+
/>
|
|
45
|
+
</G>
|
|
46
|
+
<Defs>
|
|
47
|
+
<ClipPath id="stars01-clip">
|
|
48
|
+
<Rect width="16" height="16" fill="white" />
|
|
49
|
+
</ClipPath>
|
|
50
|
+
</Defs>
|
|
51
|
+
</Svg>
|
|
52
|
+
);
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
export { Stars01Icon };
|
|
56
|
+
export default Stars01Icon;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type Stars01IconProps = {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
className?: string;
|
|
6
|
+
currentColor?: string;
|
|
7
|
+
fill?: string;
|
|
8
|
+
title?: string;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
const Stars01Icon: React.FC<Stars01IconProps> = ({
|
|
12
|
+
size = 16,
|
|
13
|
+
className,
|
|
14
|
+
currentColor,
|
|
15
|
+
fill,
|
|
16
|
+
title,
|
|
17
|
+
}) => {
|
|
18
|
+
const ariaProps = title
|
|
19
|
+
? { role: "img", "aria-label": title }
|
|
20
|
+
: { "aria-hidden": true };
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<svg
|
|
24
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
25
|
+
viewBox="0 0 16 16"
|
|
26
|
+
width={size}
|
|
27
|
+
height={size}
|
|
28
|
+
className={className}
|
|
29
|
+
fill={currentColor || "currentColor"}
|
|
30
|
+
{...ariaProps}
|
|
31
|
+
>
|
|
32
|
+
{title ? <title>{title}</title> : null}
|
|
33
|
+
<g clipPath="url(#clip0_878_14485)">
|
|
34
|
+
<path
|
|
35
|
+
d="M4.33398 8.66659L4.85696 9.71253C5.03395 10.0665 5.12245 10.2435 5.24067 10.3969C5.34558 10.533 5.46759 10.655 5.60369 10.7599C5.75706 10.8781 5.93405 10.9666 6.28804 11.1436L7.33398 11.6666L6.28804 12.1896C5.93405 12.3666 5.75706 12.455 5.60369 12.5733C5.46759 12.6782 5.34558 12.8002 5.24067 12.9363C5.12245 13.0897 5.03395 13.2667 4.85696 13.6206L4.33398 14.6666L3.81101 13.6206C3.63402 13.2667 3.54552 13.0897 3.4273 12.9363C3.32239 12.8002 3.20038 12.6782 3.06428 12.5733C2.91091 12.455 2.73391 12.3666 2.37993 12.1896L1.33398 11.6666L2.37993 11.1436C2.73391 10.9666 2.91091 10.8781 3.06428 10.7599C3.20038 10.655 3.32239 10.533 3.4273 10.3969C3.54552 10.2435 3.63402 10.0665 3.81101 9.71253L4.33398 8.66659Z"
|
|
36
|
+
fill="currentColor"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
d="M10.0007 1.33325L10.7864 3.3762C10.9744 3.86502 11.0684 4.10943 11.2146 4.31501C11.3442 4.49722 11.5033 4.65642 11.6856 4.78598C11.8911 4.93216 12.1356 5.02616 12.6244 5.21417L14.6673 5.99992L12.6244 6.78567C12.1356 6.97367 11.8911 7.06768 11.6856 7.21386C11.5033 7.34342 11.3442 7.50262 11.2146 7.68482C11.0684 7.89041 10.9744 8.13482 10.7864 8.62364L10.0007 10.6666L9.2149 8.62364C9.0269 8.13482 8.93289 7.89041 8.78671 7.68482C8.65715 7.50262 8.49795 7.34342 8.31575 7.21386C8.11016 7.06768 7.86575 6.97367 7.37693 6.78567L5.33398 5.99992L7.37693 5.21417C7.86575 5.02616 8.11016 4.93216 8.31575 4.78598C8.49795 4.65642 8.65715 4.49722 8.78671 4.31501C8.93289 4.10943 9.0269 3.86502 9.2149 3.3762L10.0007 1.33325Z"
|
|
40
|
+
fill="currentColor"
|
|
41
|
+
/>
|
|
42
|
+
<path
|
|
43
|
+
d="M4.33398 8.66659L4.85696 9.71253C5.03395 10.0665 5.12245 10.2435 5.24067 10.3969C5.34558 10.533 5.46759 10.655 5.60369 10.7599C5.75706 10.8781 5.93405 10.9666 6.28804 11.1436L7.33398 11.6666L6.28804 12.1896C5.93405 12.3666 5.75706 12.455 5.60369 12.5733C5.46759 12.6782 5.34558 12.8002 5.24067 12.9363C5.12245 13.0897 5.03395 13.2667 4.85696 13.6206L4.33398 14.6666L3.81101 13.6206C3.63402 13.2667 3.54552 13.0897 3.4273 12.9363C3.32239 12.8002 3.20038 12.6782 3.06428 12.5733C2.91091 12.455 2.73391 12.3666 2.37993 12.1896L1.33398 11.6666L2.37993 11.1436C2.73391 10.9666 2.91091 10.8781 3.06428 10.7599C3.20038 10.655 3.32239 10.533 3.4273 10.3969C3.54552 10.2435 3.63402 10.0665 3.81101 9.71253L4.33398 8.66659Z"
|
|
44
|
+
stroke="currentColor"
|
|
45
|
+
strokeWidth="1.25"
|
|
46
|
+
strokeLinecap="round"
|
|
47
|
+
strokeLinejoin="round"
|
|
48
|
+
/>
|
|
49
|
+
<path
|
|
50
|
+
d="M10.0007 1.33325L10.7864 3.3762C10.9744 3.86502 11.0684 4.10943 11.2146 4.31501C11.3442 4.49722 11.5033 4.65642 11.6856 4.78598C11.8911 4.93216 12.1356 5.02616 12.6244 5.21417L14.6673 5.99992L12.6244 6.78567C12.1356 6.97367 11.8911 7.06768 11.6856 7.21386C11.5033 7.34342 11.3442 7.50262 11.2146 7.68482C11.0684 7.89041 10.9744 8.13482 10.7864 8.62364L10.0007 10.6666L9.2149 8.62364C9.0269 8.13482 8.93289 7.89041 8.78671 7.68482C8.65715 7.50262 8.49795 7.34342 8.31575 7.21386C8.11016 7.06768 7.86575 6.97367 7.37693 6.78567L5.33398 5.99992L7.37693 5.21417C7.86575 5.02616 8.11016 4.93216 8.31575 4.78598C8.49795 4.65642 8.65715 4.49722 8.78671 4.31501C8.93289 4.10943 9.0269 3.86502 9.2149 3.3762L10.0007 1.33325Z"
|
|
51
|
+
stroke="currentColor"
|
|
52
|
+
strokeWidth="1.25"
|
|
53
|
+
strokeLinecap="round"
|
|
54
|
+
strokeLinejoin="round"
|
|
55
|
+
/>
|
|
56
|
+
</g>
|
|
57
|
+
<defs>
|
|
58
|
+
<clipPath id="clip0_878_14485">
|
|
59
|
+
<rect width="16" height="16" fill="white" />
|
|
60
|
+
</clipPath>
|
|
61
|
+
</defs>
|
|
62
|
+
</svg>
|
|
63
|
+
);
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
export default Stars01Icon;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type StarsIcon02Props = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
stroke?: string;
|
|
7
|
+
strokeWidth?: number | string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const StarsIcon02: React.FC<StarsIcon02Props> = ({
|
|
11
|
+
size = 18,
|
|
12
|
+
stroke = '#000000',
|
|
13
|
+
strokeWidth = 1.5,
|
|
14
|
+
}) => {
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
width={size}
|
|
18
|
+
height={size}
|
|
19
|
+
viewBox="0 0 18 18"
|
|
20
|
+
fill="none"
|
|
21
|
+
stroke={stroke}
|
|
22
|
+
strokeWidth={strokeWidth}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
>
|
|
26
|
+
<G clipPath="url(#stars02-clip)">
|
|
27
|
+
<Path d="M4.875 9.75L5.46334 10.9267C5.66246 11.3249 5.76202 11.524 5.89502 11.6966C6.01304 11.8497 6.15031 11.987 6.30341 12.105C6.47596 12.238 6.67508 12.3375 7.07331 12.5367L8.25 13.125L7.07331 13.7133C6.67508 13.9125 6.47596 14.012 6.30342 14.145C6.15031 14.263 6.01304 14.4003 5.89502 14.5534C5.76202 14.726 5.66246 14.9251 5.46334 15.3233L4.875 16.5L4.28666 15.3233C4.08754 14.9251 3.98798 14.726 3.85498 14.5534C3.73696 14.4003 3.59969 14.263 3.44659 14.145C3.27404 14.012 3.07492 13.9125 2.67669 13.7133L1.5 13.125L2.67669 12.5367C3.07492 12.3375 3.27404 12.238 3.44658 12.105C3.59969 11.987 3.73696 11.8497 3.85498 11.6966C3.98798 11.524 4.08754 11.3249 4.28666 10.9267L4.875 9.75Z" />
|
|
28
|
+
<Path d="M11.25 1.5L12.134 3.79831C12.3455 4.34824 12.4512 4.6232 12.6157 4.85448C12.7614 5.05947 12.9405 5.23856 13.1455 5.38431C13.3768 5.54877 13.6518 5.65452 14.2017 5.86603L16.5 6.75L14.2017 7.63397C13.6518 7.84548 13.3768 7.95123 13.1455 8.11569C12.9405 8.26144 12.7614 8.44054 12.6157 8.64552C12.4512 8.8768 12.3455 9.15176 12.134 9.70169L11.25 12L10.366 9.70169C10.1545 9.15176 10.0488 8.8768 9.88431 8.64552C9.73856 8.44054 9.55947 8.26144 9.35448 8.11569C9.1232 7.95123 8.84824 7.84548 8.29831 7.63397L6 6.75L8.29831 5.86603C8.84824 5.65452 9.1232 5.54877 9.35448 5.38431C9.55946 5.23856 9.73856 5.05947 9.88431 4.85448C10.0488 4.6232 10.1545 4.34824 10.366 3.79831L11.25 1.5Z" />
|
|
29
|
+
</G>
|
|
30
|
+
<Defs>
|
|
31
|
+
<ClipPath id="stars02-clip">
|
|
32
|
+
<Rect width="18" height="18" fill="white" />
|
|
33
|
+
</ClipPath>
|
|
34
|
+
</Defs>
|
|
35
|
+
</Svg>
|
|
36
|
+
);
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export { StarsIcon02 };
|
|
40
|
+
export default StarsIcon02;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type StarsIcon02Props = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
/** Width/height in px or any CSS unit */
|
|
5
|
+
size?: number | string;
|
|
6
|
+
/** Stroke color. Defaults to currentColor for easy theming */
|
|
7
|
+
stroke?: string;
|
|
8
|
+
/** Stroke width */
|
|
9
|
+
strokeWidth?: number | string;
|
|
10
|
+
/** Accessible title for screen readers */
|
|
11
|
+
title?: string;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
const StarsIcon02 = React.forwardRef<SVGSVGElement, StarsIcon02Props>(
|
|
15
|
+
(
|
|
16
|
+
{
|
|
17
|
+
size = 18,
|
|
18
|
+
stroke = "currentColor",
|
|
19
|
+
strokeWidth = 1.5,
|
|
20
|
+
className,
|
|
21
|
+
title,
|
|
22
|
+
...rest
|
|
23
|
+
},
|
|
24
|
+
ref,
|
|
25
|
+
) => {
|
|
26
|
+
const clipId = React.useId();
|
|
27
|
+
|
|
28
|
+
return (
|
|
29
|
+
<svg
|
|
30
|
+
ref={ref}
|
|
31
|
+
width={size}
|
|
32
|
+
height={size}
|
|
33
|
+
viewBox="0 0 18 18"
|
|
34
|
+
fill="none"
|
|
35
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
36
|
+
stroke={stroke}
|
|
37
|
+
strokeWidth={strokeWidth}
|
|
38
|
+
strokeLinecap="round"
|
|
39
|
+
strokeLinejoin="round"
|
|
40
|
+
role={title ? "img" : "presentation"}
|
|
41
|
+
aria-label={title}
|
|
42
|
+
className={className}
|
|
43
|
+
{...rest}
|
|
44
|
+
>
|
|
45
|
+
{title ? <title>{title}</title> : null}
|
|
46
|
+
<g clipPath={`url(#${clipId})`}>
|
|
47
|
+
<path d="M4.875 9.75L5.46334 10.9267C5.66246 11.3249 5.76202 11.524 5.89502 11.6966C6.01304 11.8497 6.15031 11.987 6.30341 12.105C6.47596 12.238 6.67508 12.3375 7.07331 12.5367L8.25 13.125L7.07331 13.7133C6.67508 13.9125 6.47596 14.012 6.30342 14.145C6.15031 14.263 6.01304 14.4003 5.89502 14.5534C5.76202 14.726 5.66246 14.9251 5.46334 15.3233L4.875 16.5L4.28666 15.3233C4.08754 14.9251 3.98798 14.726 3.85498 14.5534C3.73696 14.4003 3.59969 14.263 3.44659 14.145C3.27404 14.012 3.07492 13.9125 2.67669 13.7133L1.5 13.125L2.67669 12.5367C3.07492 12.3375 3.27404 12.238 3.44658 12.105C3.59969 11.987 3.73696 11.8497 3.85498 11.6966C3.98798 11.524 4.08754 11.3249 4.28666 10.9267L4.875 9.75Z" />
|
|
48
|
+
<path d="M11.25 1.5L12.134 3.79831C12.3455 4.34824 12.4512 4.6232 12.6157 4.85448C12.7614 5.05947 12.9405 5.23856 13.1455 5.38431C13.3768 5.54877 13.6518 5.65452 14.2017 5.86603L16.5 6.75L14.2017 7.63397C13.6518 7.84548 13.3768 7.95123 13.1455 8.11569C12.9405 8.26144 12.7614 8.44054 12.6157 8.64552C12.4512 8.8768 12.3455 9.15176 12.134 9.70169L11.25 12L10.366 9.70169C10.1545 9.15176 10.0488 8.8768 9.88431 8.64552C9.73856 8.44054 9.55947 8.26144 9.35448 8.11569C9.1232 7.95123 8.84824 7.84548 8.29831 7.63397L6 6.75L8.29831 5.86603C8.84824 5.65452 9.1232 5.54877 9.35448 5.38431C9.55946 5.23856 9.73856 5.05947 9.88431 4.85448C10.0488 4.6232 10.1545 4.34824 10.366 3.79831L11.25 1.5Z" />
|
|
49
|
+
</g>
|
|
50
|
+
<defs>
|
|
51
|
+
<clipPath id={clipId}>
|
|
52
|
+
<rect width="18" height="18" fill="white" />
|
|
53
|
+
</clipPath>
|
|
54
|
+
</defs>
|
|
55
|
+
</svg>
|
|
56
|
+
);
|
|
57
|
+
},
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
StarsIcon02.displayName = "StarsIcon02";
|
|
61
|
+
|
|
62
|
+
export default StarsIcon02;
|
|
63
|
+
|
|
64
|
+
// Example usage:
|
|
65
|
+
// <StarsIcon02 className="text-gray-700" size={18} />
|
|
66
|
+
// <StarsIcon02 stroke="#111827" strokeWidth={2} title="Double star icon" />
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const Star04Icon: 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
|
+
<G clipPath="url(#stars04-clip)">
|
|
20
|
+
<Path
|
|
21
|
+
d="M9 1.5L10.509 5.42331C10.7205 5.97324 10.8262 6.2482 10.9907 6.47948C11.1364 6.68447 11.3155 6.86356 11.5205 7.00931C11.7518 7.17377 12.0268 7.27952 12.5767 7.49103L16.5 9L12.5767 10.509C12.0268 10.7205 11.7518 10.8262 11.5205 10.9907C11.3155 11.1364 11.1364 11.3155 10.9907 11.5205C10.8262 11.7518 10.7205 12.0268 10.509 12.5767L9 16.5L7.49103 12.5767C7.27952 12.0268 7.17377 11.7518 7.00931 11.5205C6.86356 11.3155 6.68447 11.1364 6.47948 10.9907C6.2482 10.8262 5.97324 10.7205 5.42331 10.509L1.5 9L5.42331 7.49103C5.97324 7.27952 6.2482 7.17377 6.47948 7.00931C6.68446 6.86356 6.86356 6.68446 7.00931 6.47948C7.17377 6.2482 7.27952 5.97324 7.49103 5.42331L9 1.5Z"
|
|
22
|
+
stroke={color}
|
|
23
|
+
strokeWidth="1.5"
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
</G>
|
|
28
|
+
<Defs>
|
|
29
|
+
<ClipPath id="stars04-clip">
|
|
30
|
+
<Rect width="18" height="18" fill="white" />
|
|
31
|
+
</ClipPath>
|
|
32
|
+
</Defs>
|
|
33
|
+
</Svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export { Star04Icon };
|
|
37
|
+
export default Star04Icon;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const Star04Icon: 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
|
+
>
|
|
22
|
+
<g clipPath="url(#clip0_10870_4507)">
|
|
23
|
+
<path
|
|
24
|
+
d="M9 1.5L10.509 5.42331C10.7205 5.97324 10.8262 6.2482 10.9907 6.47948C11.1364 6.68447 11.3155 6.86356 11.5205 7.00931C11.7518 7.17377 12.0268 7.27952 12.5767 7.49103L16.5 9L12.5767 10.509C12.0268 10.7205 11.7518 10.8262 11.5205 10.9907C11.3155 11.1364 11.1364 11.3155 10.9907 11.5205C10.8262 11.7518 10.7205 12.0268 10.509 12.5767L9 16.5L7.49103 12.5767C7.27952 12.0268 7.17377 11.7518 7.00931 11.5205C6.86356 11.3155 6.68447 11.1364 6.47948 10.9907C6.2482 10.8262 5.97324 10.7205 5.42331 10.509L1.5 9L5.42331 7.49103C5.97324 7.27952 6.2482 7.17377 6.47948 7.00931C6.68446 6.86356 6.86356 6.68446 7.00931 6.47948C7.17377 6.2482 7.27952 5.97324 7.49103 5.42331L9 1.5Z"
|
|
25
|
+
stroke={color}
|
|
26
|
+
strokeWidth="1.5"
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
/>
|
|
30
|
+
</g>
|
|
31
|
+
<defs>
|
|
32
|
+
<clipPath id="clip0_10870_4507">
|
|
33
|
+
<rect width="18" height="18" fill="white" />
|
|
34
|
+
</clipPath>
|
|
35
|
+
</defs>
|
|
36
|
+
</svg>
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
export default Star04Icon;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface Stars06IconProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
strokeColor?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const Stars06Icon: React.FC<Stars06IconProps> = ({
|
|
10
|
+
size = 22,
|
|
11
|
+
strokeColor = '#000000',
|
|
12
|
+
}) => (
|
|
13
|
+
<Svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 22 22"
|
|
17
|
+
fill="none"
|
|
18
|
+
>
|
|
19
|
+
<G clipPath="url(#stars06-clip)">
|
|
20
|
+
<Path
|
|
21
|
+
d="M4.1237 20.1663V15.583M4.1237 6.41634V1.83301M1.83203 4.12467H6.41536M1.83203 17.8747H6.41536M11.9154 2.74967L10.3257 6.8828C10.0672 7.55493 9.93794 7.89099 9.73693 8.17367C9.55879 8.42421 9.3399 8.6431 9.08936 8.82124C8.80668 9.02225 8.47061 9.1515 7.79849 9.41001L3.66536 10.9997L7.79849 12.5893C8.47062 12.8478 8.80668 12.9771 9.08936 13.1781C9.3399 13.3563 9.55879 13.5751 9.73693 13.8257C9.93794 14.1084 10.0672 14.4444 10.3257 15.1166L11.9154 19.2497L13.505 15.1165C13.7635 14.4444 13.8928 14.1084 14.0938 13.8257C14.2719 13.5751 14.4908 13.3563 14.7414 13.1781C15.0241 12.9771 15.3601 12.8478 16.0322 12.5893L20.1654 10.9997L16.0322 9.41001C15.3601 9.1515 15.024 9.02225 14.7414 8.82124C14.4908 8.6431 14.2719 8.42421 14.0938 8.17367C13.8928 7.89099 13.7635 7.55493 13.505 6.8828L11.9154 2.74967Z"
|
|
22
|
+
stroke={strokeColor}
|
|
23
|
+
strokeWidth={1.8}
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
</G>
|
|
28
|
+
<Defs>
|
|
29
|
+
<ClipPath id="stars06-clip">
|
|
30
|
+
<Rect width="22" height="22" fill="white" />
|
|
31
|
+
</ClipPath>
|
|
32
|
+
</Defs>
|
|
33
|
+
</Svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export { Stars06Icon };
|
|
37
|
+
export default Stars06Icon;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface Stars06IconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
strokeColor?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const Stars06Icon: React.FC<Stars06IconProps> = ({
|
|
9
|
+
size = 22,
|
|
10
|
+
strokeColor = "currentColor",
|
|
11
|
+
...props
|
|
12
|
+
}) => (
|
|
13
|
+
<svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 22 22"
|
|
17
|
+
fill="none"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
{...props}
|
|
20
|
+
>
|
|
21
|
+
<g clipPath="url(#clip0_stars06)">
|
|
22
|
+
<path
|
|
23
|
+
d="M4.1237 20.1663V15.583M4.1237 6.41634V1.83301M1.83203 4.12467H6.41536M1.83203 17.8747H6.41536M11.9154 2.74967L10.3257 6.8828C10.0672 7.55493 9.93794 7.89099 9.73693 8.17367C9.55879 8.42421 9.3399 8.6431 9.08936 8.82124C8.80668 9.02225 8.47061 9.1515 7.79849 9.41001L3.66536 10.9997L7.79849 12.5893C8.47062 12.8478 8.80668 12.9771 9.08936 13.1781C9.3399 13.3563 9.55879 13.5751 9.73693 13.8257C9.93794 14.1084 10.0672 14.4444 10.3257 15.1166L11.9154 19.2497L13.505 15.1165C13.7635 14.4444 13.8928 14.1084 14.0938 13.8257C14.2719 13.5751 14.4908 13.3563 14.7414 13.1781C15.0241 12.9771 15.3601 12.8478 16.0322 12.5893L20.1654 10.9997L16.0322 9.41001C15.3601 9.1515 15.024 9.02225 14.7414 8.82124C14.4908 8.6431 14.2719 8.42421 14.0938 8.17367C13.8928 7.89099 13.7635 7.55493 13.505 6.8828L11.9154 2.74967Z"
|
|
24
|
+
stroke={strokeColor}
|
|
25
|
+
strokeWidth={1.8}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</g>
|
|
30
|
+
<defs>
|
|
31
|
+
<clipPath id="clip0_stars06">
|
|
32
|
+
<rect width="22" height="22" fill="white" />
|
|
33
|
+
</clipPath>
|
|
34
|
+
</defs>
|
|
35
|
+
</svg>
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
export default Stars06Icon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface TagsIconProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const TagsIcon: React.FC<TagsIconProps> = ({ size = 18 }) => (
|
|
9
|
+
<Svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 18 18"
|
|
13
|
+
fill="none"
|
|
14
|
+
>
|
|
15
|
+
<Path
|
|
16
|
+
d="M15.75 8.25L10.0544 2.55442C9.66527 2.16527 9.4707 1.9707 9.24364 1.83156C9.04233 1.70819 8.82285 1.61729 8.59327 1.56217C8.33432 1.5 8.05916 1.5 7.50883 1.5L4.5 1.5M2.25 6.525L2.25 8.00589C2.25 8.37277 2.25 8.55622 2.29145 8.72885C2.32819 8.8819 2.3888 9.02822 2.47104 9.16243C2.5638 9.3138 2.69352 9.44352 2.95294 9.70294L8.80294 15.5529C9.39697 16.147 9.69398 16.444 10.0365 16.5553C10.3377 16.6532 10.6623 16.6532 10.9635 16.5553C11.306 16.444 11.603 16.147 12.1971 15.5529L14.0529 13.6971C14.647 13.103 14.944 12.806 15.0553 12.4635C15.1532 12.1623 15.1532 11.8377 15.0553 11.5365C14.944 11.194 14.647 10.897 14.0529 10.3029L8.57794 4.82794C8.31852 4.56852 8.1888 4.4388 8.03743 4.34604C7.90322 4.2638 7.7569 4.20319 7.60385 4.16645C7.43122 4.125 7.24777 4.125 6.88089 4.125H4.65C3.80992 4.125 3.38988 4.125 3.06901 4.28849C2.78677 4.4323 2.5573 4.66177 2.41349 4.94401C2.25 5.26488 2.25 5.68492 2.25 6.525Z"
|
|
17
|
+
stroke="currentColor"
|
|
18
|
+
strokeWidth={1.5}
|
|
19
|
+
strokeLinecap="round"
|
|
20
|
+
strokeLinejoin="round"
|
|
21
|
+
/>
|
|
22
|
+
</Svg>
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export { TagsIcon };
|
|
26
|
+
export default TagsIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { LucideProps } from 'lucide-react';
|
|
3
|
+
|
|
4
|
+
interface TagsIconProps extends LucideProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const TagsIcon: React.FC<TagsIconProps> = ({ size = 18, className, ...props }) => (
|
|
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
|
+
className={className}
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
d="M15.75 8.25L10.0544 2.55442C9.66527 2.16527 9.4707 1.9707 9.24364 1.83156C9.04233 1.70819 8.82285 1.61729 8.59327 1.56217C8.33432 1.5 8.05916 1.5 7.50883 1.5L4.5 1.5M2.25 6.525L2.25 8.00589C2.25 8.37277 2.25 8.55622 2.29145 8.72885C2.32819 8.8819 2.3888 9.02822 2.47104 9.16243C2.5638 9.3138 2.69352 9.44352 2.95294 9.70294L8.80294 15.5529C9.39697 16.147 9.69398 16.444 10.0365 16.5553C10.3377 16.6532 10.6623 16.6532 10.9635 16.5553C11.306 16.444 11.603 16.147 12.1971 15.5529L14.0529 13.6971C14.647 13.103 14.944 12.806 15.0553 12.4635C15.1532 12.1623 15.1532 11.8377 15.0553 11.5365C14.944 11.194 14.647 10.897 14.0529 10.3029L8.57794 4.82794C8.31852 4.56852 8.1888 4.4388 8.03743 4.34604C7.90322 4.2638 7.7569 4.20319 7.60385 4.16645C7.43122 4.125 7.24777 4.125 6.88089 4.125H4.65C3.80992 4.125 3.38988 4.125 3.06901 4.28849C2.78677 4.4323 2.5573 4.66177 2.41349 4.94401C2.25 5.26488 2.25 5.68492 2.25 6.525Z"
|
|
21
|
+
stroke="currentColor"
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
export default TagsIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type ThumbsDownIconProps = {
|
|
5
|
+
size?: number;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const ThumbsDownIcon: React.FC<ThumbsDownIconProps> = ({ size = 18 }) => {
|
|
9
|
+
return (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 18 18"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
d="M12.75 1.5V9.75M16.5 7.35V3.9C16.5 3.05992 16.5 2.63988 16.3365 2.31901C16.1927 2.03677 15.9632 1.8073 15.681 1.66349C15.3601 1.5 14.9401 1.5 14.1 1.5H6.0885C4.99239 1.5 4.44433 1.5 4.00168 1.70058C3.61154 1.87735 3.27997 2.16182 3.04592 2.52054C2.78037 2.92755 2.69704 3.46923 2.53036 4.55259L2.13806 7.10259C1.91823 8.53148 1.80831 9.24593 2.02035 9.80184C2.20645 10.2898 2.55648 10.6978 3.01044 10.9559C3.52764 11.25 4.25049 11.25 5.69619 11.25H6.29999C6.72003 11.25 6.93005 11.25 7.09049 11.3317C7.23161 11.4037 7.34634 11.5184 7.41825 11.6595C7.49999 11.8199 7.49999 12.03 7.49999 12.45V14.6506C7.49999 15.672 8.32799 16.5 9.34937 16.5C9.59299 16.5 9.81376 16.3565 9.9127 16.1339L12.4333 10.4626C12.5479 10.2047 12.6052 10.0757 12.6958 9.98114C12.7759 9.89755 12.8743 9.83363 12.9832 9.79439C13.1064 9.75 13.2476 9.75 13.5298 9.75H14.1C14.9401 9.75 15.3601 9.75 15.681 9.58651C15.9632 9.4427 16.1927 9.21323 16.3365 8.93099C16.5 8.61012 16.5 8.19008 16.5 7.35Z"
|
|
18
|
+
stroke="currentColor"
|
|
19
|
+
strokeWidth={1.25}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export { ThumbsDownIcon };
|
|
28
|
+
export default ThumbsDownIcon;
|