@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,48 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* GlobeIcon React component
|
|
5
|
+
*
|
|
6
|
+
* @param props - SVG props to customize the icon (e.g., width, height, stroke color)
|
|
7
|
+
*/
|
|
8
|
+
const GlobeIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
|
|
9
|
+
const {
|
|
10
|
+
width = 16,
|
|
11
|
+
height = 16,
|
|
12
|
+
stroke = 'currentColor',
|
|
13
|
+
strokeWidth = 1.5,
|
|
14
|
+
...restProps
|
|
15
|
+
} = props;
|
|
16
|
+
|
|
17
|
+
return (
|
|
18
|
+
<svg
|
|
19
|
+
width={width}
|
|
20
|
+
height={height}
|
|
21
|
+
viewBox="0 0 16 16"
|
|
22
|
+
fill="none"
|
|
23
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
24
|
+
{...restProps}
|
|
25
|
+
>
|
|
26
|
+
<g clipPath="url(#clip0)">
|
|
27
|
+
<path
|
|
28
|
+
d="M7.9987 1.33203C9.66622 3.1576 10.6139 5.52672 10.6654 7.9987C10.6139 10.4707 9.66622 12.8398 7.9987 14.6654
|
|
29
|
+
M7.9987 1.33203C6.33118 3.1576 5.38353 5.52672 5.33203 7.9987C5.38353 10.4707 6.33118 12.8398 7.9987 14.6654
|
|
30
|
+
M7.9987 1.33203C4.3168 1.33203 1.33203 4.3168 1.33203 7.9987C1.33203 11.6806 4.3168 14.6654 7.9987 14.6654
|
|
31
|
+
M7.9987 1.33203C11.6806 1.33203 14.6654 4.3168 14.6654 7.9987C14.6654 11.6806 11.6806 14.6654 7.9987 14.6654
|
|
32
|
+
M1.66538 5.9987H14.332M1.66536 9.9987H14.332"
|
|
33
|
+
stroke={stroke}
|
|
34
|
+
strokeWidth={strokeWidth}
|
|
35
|
+
strokeLinecap="round"
|
|
36
|
+
strokeLinejoin="round"
|
|
37
|
+
/>
|
|
38
|
+
</g>
|
|
39
|
+
<defs>
|
|
40
|
+
<clipPath id="clip0">
|
|
41
|
+
<rect width="16" height="16" fill="white" />
|
|
42
|
+
</clipPath>
|
|
43
|
+
</defs>
|
|
44
|
+
</svg>
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export default GlobeIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type Hash02IconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const Hash02Icon: React.FC<Hash02IconProps> = ({ size = 16 }) => (
|
|
9
|
+
<Svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 16 16"
|
|
13
|
+
fill="none"
|
|
14
|
+
>
|
|
15
|
+
<Path
|
|
16
|
+
d="M6.33365 2L4.33365 14M11.667 2L9.66697 14M13.667 5.33333H2.33366M13.0003 10.6667H1.66699"
|
|
17
|
+
stroke="#666666"
|
|
18
|
+
strokeLinecap="round"
|
|
19
|
+
strokeLinejoin="round"
|
|
20
|
+
/>
|
|
21
|
+
</Svg>
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
export { Hash02Icon };
|
|
25
|
+
export default Hash02Icon;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
// Hash02Icon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
|
|
4
|
+
type Hash02IconProps = React.SVGProps<SVGSVGElement> & {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export const Hash02Icon: React.FC<Hash02IconProps> = ({ size = 16, ...props }) => (
|
|
9
|
+
<svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 16 16"
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
{...props}
|
|
16
|
+
>
|
|
17
|
+
<path
|
|
18
|
+
d="M6.33365 2L4.33365 14M11.667 2L9.66697 14M13.667 5.33333H2.33366M13.0003 10.6667H1.66699"
|
|
19
|
+
stroke="#666666"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface HeartIconProps {
|
|
5
|
+
color?: string;
|
|
6
|
+
size?: number;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
fill?: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const HeartIcon: React.FC<HeartIconProps> = ({
|
|
12
|
+
color = '#000000',
|
|
13
|
+
fill = 'none',
|
|
14
|
+
size = 17,
|
|
15
|
+
strokeWidth = 1.5,
|
|
16
|
+
}) => {
|
|
17
|
+
return (
|
|
18
|
+
<Svg
|
|
19
|
+
width={size}
|
|
20
|
+
height={size}
|
|
21
|
+
viewBox="0 0 17 17"
|
|
22
|
+
fill={fill}
|
|
23
|
+
>
|
|
24
|
+
<Path
|
|
25
|
+
fillRule="evenodd"
|
|
26
|
+
clipRule="evenodd"
|
|
27
|
+
d="M8.4945 3.63787C7.07829 1.9822 4.71667 1.53683 2.94226 3.05293C1.16785 4.56902 0.918034 7.10386 2.31149 8.89695C3.47005 10.3878 6.97627 13.5321 8.12542 14.5498C8.25399 14.6636 8.31827 14.7205 8.39325 14.7429C8.45869 14.7624 8.5303 14.7624 8.59575 14.7429C8.67073 14.7205 8.73501 14.6636 8.86358 14.5498C10.0127 13.5321 13.5189 10.3878 14.6775 8.89695C16.071 7.10386 15.8516 4.55307 14.0467 3.05293C12.2418 1.55278 9.91071 1.9822 8.4945 3.63787Z"
|
|
28
|
+
stroke={color}
|
|
29
|
+
strokeWidth={strokeWidth}
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
</Svg>
|
|
34
|
+
);
|
|
35
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface HeartIconProps {
|
|
4
|
+
className?: string;
|
|
5
|
+
color?: string;
|
|
6
|
+
size?: number;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
fill?: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const HeartIcon: React.FC<HeartIconProps> = ({
|
|
12
|
+
className,
|
|
13
|
+
color = 'currentColor',
|
|
14
|
+
fill = 'none',
|
|
15
|
+
size = 17,
|
|
16
|
+
strokeWidth = 1.5
|
|
17
|
+
}) => {
|
|
18
|
+
return (
|
|
19
|
+
<svg
|
|
20
|
+
width={size}
|
|
21
|
+
height={size}
|
|
22
|
+
viewBox="0 0 17 17"
|
|
23
|
+
fill={fill}
|
|
24
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
25
|
+
className={className}
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
fillRule="evenodd"
|
|
29
|
+
clipRule="evenodd"
|
|
30
|
+
d="M8.4945 3.63787C7.07829 1.9822 4.71667 1.53683 2.94226 3.05293C1.16785 4.56902 0.918034 7.10386 2.31149 8.89695C3.47005 10.3878 6.97627 13.5321 8.12542 14.5498C8.25399 14.6636 8.31827 14.7205 8.39325 14.7429C8.45869 14.7624 8.5303 14.7624 8.59575 14.7429C8.67073 14.7205 8.73501 14.6636 8.86358 14.5498C10.0127 13.5321 13.5189 10.3878 14.6775 8.89695C16.071 7.10386 15.8516 4.55307 14.0467 3.05293C12.2418 1.55278 9.91071 1.9822 8.4945 3.63787Z"
|
|
31
|
+
stroke={color}
|
|
32
|
+
strokeWidth={strokeWidth}
|
|
33
|
+
strokeLinecap="round"
|
|
34
|
+
strokeLinejoin="round"
|
|
35
|
+
/>
|
|
36
|
+
</svg>
|
|
37
|
+
);
|
|
38
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type HelpIconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const HelpIcon: React.FC<HelpIconProps> = ({ size = 16 }) => {
|
|
9
|
+
return (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<G clipPath="url(#help-clip)">
|
|
17
|
+
<Path
|
|
18
|
+
d="M6.06 6c.157-.446.466-.822.873-1.061.407-.24.886-.327 1.352-.247.465.08.887.322 1.191.684.304.362.47.819.47 1.292 0 1.333-2 2-2 2m.053 2.667h.007M14.667 8c0 3.683-2.985 6.667-6.667 6.667S1.333 11.683 1.333 8C1.333 4.319 4.318 1.334 8 1.334c3.682 0 6.667 2.985 6.667 6.666Z"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
strokeWidth={1.25}
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
</G>
|
|
25
|
+
<Defs>
|
|
26
|
+
<ClipPath id="help-clip">
|
|
27
|
+
<Rect width={16} height={16} fill="white" />
|
|
28
|
+
</ClipPath>
|
|
29
|
+
</Defs>
|
|
30
|
+
</Svg>
|
|
31
|
+
);
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export { HelpIcon };
|
|
35
|
+
export default HelpIcon;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type HelpIconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
size?: number | string; // Accepts number (px) or string (e.g. '1.5em')
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export function HelpIcon({ size = 16, ...props }: HelpIconProps) {
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 16 16"
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
{...props}
|
|
16
|
+
>
|
|
17
|
+
<g clipPath="url(#clip0)">
|
|
18
|
+
<path
|
|
19
|
+
d="M6.06 6c.157-.446.466-.822.873-1.061.407-.24.886-.327 1.352-.247.465.08.887.322 1.191.684.304.362.47.819.47 1.292 0 1.333-2 2-2 2m.053 2.667h.007M14.667 8c0 3.683-2.985 6.667-6.667 6.667S1.333 11.683 1.333 8C1.333 4.319 4.318 1.334 8 1.334c3.682 0 6.667 2.985 6.667 6.666Z"
|
|
20
|
+
stroke="currentColor"
|
|
21
|
+
strokeWidth={1.25}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
</g>
|
|
26
|
+
<defs>
|
|
27
|
+
<clipPath id="clip0">
|
|
28
|
+
<rect width={16} height={16} fill="white" />
|
|
29
|
+
</clipPath>
|
|
30
|
+
</defs>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
const Image01Icon: React.FC = () => {
|
|
5
|
+
return (
|
|
6
|
+
<Svg
|
|
7
|
+
width="16"
|
|
8
|
+
height="16"
|
|
9
|
+
viewBox="0 0 16 16"
|
|
10
|
+
fill="none"
|
|
11
|
+
>
|
|
12
|
+
<Path
|
|
13
|
+
d="M10.8 14H4.62091C4.21704 14 4.0151 14 3.92159 13.9201C3.84045 13.8508 3.79739 13.7469 3.80577 13.6405C3.81541 13.5179 3.95821 13.3751 4.24379 13.0895L9.91242 7.42091C10.1764 7.15691 10.3084 7.0249 10.4607 6.97544C10.5946 6.93193 10.7388 6.93193 10.8727 6.97544C11.0249 7.0249 11.1569 7.1569 11.4209 7.42091L14 10V10.8M10.8 14C11.9201 14 12.4802 14 12.908 13.782C13.2843 13.5903 13.5903 13.2843 13.782 12.908C14 12.4802 14 11.9201 14 10.8M10.8 14H5.2C4.0799 14 3.51984 14 3.09202 13.782C2.71569 13.5903 2.40973 13.2843 2.21799 12.908C2 12.4802 2 11.9201 2 10.8V5.2C2 4.0799 2 3.51984 2.21799 3.09202C2.40973 2.71569 2.71569 2.40973 3.09202 2.21799C3.51984 2 4.0799 2 5.2 2H10.8C11.9201 2 12.4802 2 12.908 2.21799C13.2843 2.40973 13.5903 2.71569 13.782 3.09202C14 3.51984 14 4.0799 14 5.2V10.8M7 5.66667C7 6.40305 6.40305 7 5.66667 7C4.93029 7 4.33333 6.40305 4.33333 5.66667C4.33333 4.93029 4.93029 4.33333 5.66667 4.33333C6.40305 4.33333 7 4.93029 7 5.66667Z"
|
|
14
|
+
stroke="currentColor"
|
|
15
|
+
strokeWidth="1.25"
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export { Image01Icon };
|
|
24
|
+
export default Image01Icon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type IconProps = React.SVGProps<SVGSVGElement>;
|
|
4
|
+
|
|
5
|
+
const Image01Icon: React.FC<IconProps> = (props) => {
|
|
6
|
+
return (
|
|
7
|
+
<svg
|
|
8
|
+
width="16"
|
|
9
|
+
height="16"
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
fill="none"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
{...props}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
d="M10.8 14H4.62091C4.21704 14 4.0151 14 3.92159 13.9201C3.84045 13.8508 3.79739 13.7469 3.80577 13.6405C3.81541 13.5179 3.95821 13.3751 4.24379 13.0895L9.91242 7.42091C10.1764 7.15691 10.3084 7.0249 10.4607 6.97544C10.5946 6.93193 10.7388 6.93193 10.8727 6.97544C11.0249 7.0249 11.1569 7.1569 11.4209 7.42091L14 10V10.8M10.8 14C11.9201 14 12.4802 14 12.908 13.782C13.2843 13.5903 13.5903 13.2843 13.782 12.908C14 12.4802 14 11.9201 14 10.8M10.8 14H5.2C4.0799 14 3.51984 14 3.09202 13.782C2.71569 13.5903 2.40973 13.2843 2.21799 12.908C2 12.4802 2 11.9201 2 10.8V5.2C2 4.0799 2 3.51984 2.21799 3.09202C2.40973 2.71569 2.71569 2.40973 3.09202 2.21799C3.51984 2 4.0799 2 5.2 2H10.8C11.9201 2 12.4802 2 12.908 2.21799C13.2843 2.40973 13.5903 2.71569 13.782 3.09202C14 3.51984 14 4.0799 14 5.2V10.8M7 5.66667C7 6.40305 6.40305 7 5.66667 7C4.93029 7 4.33333 6.40305 4.33333 5.66667C4.33333 4.93029 4.93029 4.33333 5.66667 4.33333C6.40305 4.33333 7 4.93029 7 5.66667Z"
|
|
17
|
+
stroke="currentColor"
|
|
18
|
+
strokeWidth="1.25"
|
|
19
|
+
strokeLinecap="round"
|
|
20
|
+
strokeLinejoin="round"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export default Image01Icon;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type Image03IconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeColor?: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const Image03Icon: React.FC<Image03IconProps> = ({
|
|
11
|
+
size = 14,
|
|
12
|
+
color = '#000000',
|
|
13
|
+
strokeColor = '#000000',
|
|
14
|
+
}) => {
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
width={size}
|
|
18
|
+
height={size}
|
|
19
|
+
viewBox="0 0 14 14"
|
|
20
|
+
>
|
|
21
|
+
<Path
|
|
22
|
+
d="M4.66602 6.41667C5.31035 6.41667 5.83268 5.89433 5.83268 5.25C5.83268 4.60567 5.31035 4.08333 4.66602 4.08333C4.02168 4.08333 3.49935 4.60567 3.49935 5.25C3.49935 5.89433 4.02168 6.41667 4.66602 6.41667Z"
|
|
23
|
+
fill={color}
|
|
24
|
+
/>
|
|
25
|
+
<Path
|
|
26
|
+
d="M1.16602 4.55C1.16602 3.56991 1.16602 3.07986 1.35675 2.70552C1.52453 2.37623 1.79225 2.10852 2.12153 1.94074C2.49588 1.75 2.98592 1.75 3.96602 1.75H10.0327C11.0128 1.75 11.5028 1.75 11.8772 1.94074C12.2064 2.10852 12.4742 2.37623 12.6419 2.70552C12.8327 3.07986 12.8327 3.56991 12.8327 4.55V9.45C12.8327 10.4301 12.8327 10.9201 12.6419 11.2945C12.4742 11.6238 12.2064 11.8915 11.8772 12.0593C11.5028 12.25 11.0128 12.25 10.0327 12.25H3.96602C2.98592 12.25 2.49588 12.25 2.12153 12.0593C1.79225 11.8915 1.52453 11.6238 1.35675 11.2945C1.16602 10.9201 1.16602 10.4301 1.16602 9.45V4.55Z"
|
|
27
|
+
fill={color}
|
|
28
|
+
/>
|
|
29
|
+
<Path
|
|
30
|
+
d="M2.4914 12.0913L6.33938 8.2433C6.57039 8.01229 6.6859 7.89678 6.81909 7.85351C6.93625 7.81544 7.06245 7.81544 7.17961 7.85351C7.3128 7.89678 7.42831 8.01229 7.65931 8.2433L11.4816 12.0656M8.16602 8.75L9.83938 7.07663C10.0704 6.84562 10.1859 6.73012 10.3191 6.68684C10.4362 6.64877 10.5624 6.64877 10.6796 6.68684C10.8128 6.73012 10.9283 6.84562 11.1593 7.07663L12.8327 8.75M5.83268 5.25C5.83268 5.89433 5.31035 6.41667 4.66602 6.41667C4.02168 6.41667 3.49935 5.89433 3.49935 5.25C3.49935 4.60567 4.02168 4.08333 4.66602 4.08333C5.31035 4.08333 5.83268 4.60567 5.83268 5.25ZM3.96602 12.25H10.0327C11.0128 12.25 11.5028 12.25 11.8772 12.0593C12.2064 11.8915 12.4742 11.6238 12.6419 11.2945C12.8327 10.9201 12.8327 10.4301 12.8327 9.45V4.55C12.8327 3.56991 12.8327 3.07986 12.6419 2.70552C12.4742 2.37623 12.2064 2.10852 11.8772 1.94074C11.5028 1.75 11.0128 1.75 10.0327 1.75H3.96602C2.98592 1.75 2.49588 1.75 2.12153 1.94074C1.79225 2.10852 1.52453 2.37623 1.35675 2.70552C1.16602 3.07986 1.16602 3.56991 1.16602 4.55V9.45C1.16602 10.4301 1.16602 10.9201 1.35675 11.2945C1.52453 11.6238 1.79225 11.8915 2.12153 12.0593C2.49588 12.25 2.98592 12.25 3.96602 12.25Z"
|
|
31
|
+
stroke={strokeColor}
|
|
32
|
+
strokeLinecap="round"
|
|
33
|
+
strokeLinejoin="round"
|
|
34
|
+
/>
|
|
35
|
+
</Svg>
|
|
36
|
+
);
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export { Image03Icon };
|
|
40
|
+
export default Image03Icon;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type Image03IconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
color?: string; // applies to fills
|
|
6
|
+
strokeColor?: string; // applies to strokes
|
|
7
|
+
title?: string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const Image03Icon: React.FC<Image03IconProps> = ({
|
|
11
|
+
size = 14,
|
|
12
|
+
color = "currentColor",
|
|
13
|
+
strokeColor = "currentColor",
|
|
14
|
+
title,
|
|
15
|
+
className,
|
|
16
|
+
...props
|
|
17
|
+
}) => {
|
|
18
|
+
const ariaProps = title
|
|
19
|
+
? { role: "img", "aria-label": title }
|
|
20
|
+
: { "aria-hidden": true };
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<svg
|
|
24
|
+
width={size}
|
|
25
|
+
height={size}
|
|
26
|
+
viewBox="0 0 14 14"
|
|
27
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
28
|
+
className={className}
|
|
29
|
+
{...ariaProps}
|
|
30
|
+
{...props}
|
|
31
|
+
>
|
|
32
|
+
{title ? <title>{title}</title> : null}
|
|
33
|
+
<path
|
|
34
|
+
d="M4.66602 6.41667C5.31035 6.41667 5.83268 5.89433 5.83268 5.25C5.83268 4.60567 5.31035 4.08333 4.66602 4.08333C4.02168 4.08333 3.49935 4.60567 3.49935 5.25C3.49935 5.89433 4.02168 6.41667 4.66602 6.41667Z"
|
|
35
|
+
fill={color}
|
|
36
|
+
/>
|
|
37
|
+
<path
|
|
38
|
+
d="M1.16602 4.55C1.16602 3.56991 1.16602 3.07986 1.35675 2.70552C1.52453 2.37623 1.79225 2.10852 2.12153 1.94074C2.49588 1.75 2.98592 1.75 3.96602 1.75H10.0327C11.0128 1.75 11.5028 1.75 11.8772 1.94074C12.2064 2.10852 12.4742 2.37623 12.6419 2.70552C12.8327 3.07986 12.8327 3.56991 12.8327 4.55V9.45C12.8327 10.4301 12.8327 10.9201 12.6419 11.2945C12.4742 11.6238 12.2064 11.8915 11.8772 12.0593C11.5028 12.25 11.0128 12.25 10.0327 12.25H3.96602C2.98592 12.25 2.49588 12.25 2.12153 12.0593C1.79225 11.8915 1.52453 11.6238 1.35675 11.2945C1.16602 10.9201 1.16602 10.4301 1.16602 9.45V4.55Z"
|
|
39
|
+
fill={color}
|
|
40
|
+
/>
|
|
41
|
+
<path
|
|
42
|
+
d="M2.4914 12.0913L6.33938 8.2433C6.57039 8.01229 6.6859 7.89678 6.81909 7.85351C6.93625 7.81544 7.06245 7.81544 7.17961 7.85351C7.3128 7.89678 7.42831 8.01229 7.65931 8.2433L11.4816 12.0656M8.16602 8.75L9.83938 7.07663C10.0704 6.84562 10.1859 6.73012 10.3191 6.68684C10.4362 6.64877 10.5624 6.64877 10.6796 6.68684C10.8128 6.73012 10.9283 6.84562 11.1593 7.07663L12.8327 8.75M5.83268 5.25C5.83268 5.89433 5.31035 6.41667 4.66602 6.41667C4.02168 6.41667 3.49935 5.89433 3.49935 5.25C3.49935 4.60567 4.02168 4.08333 4.66602 4.08333C5.31035 4.08333 5.83268 4.60567 5.83268 5.25ZM3.96602 12.25H10.0327C11.0128 12.25 11.5028 12.25 11.8772 12.0593C12.2064 11.8915 12.4742 11.6238 12.6419 11.2945C12.8327 10.9201 12.8327 10.4301 12.8327 9.45V4.55C12.8327 3.56991 12.8327 3.07986 12.6419 2.70552C12.4742 2.37623 12.2064 2.10852 11.8772 1.94074C11.5028 1.75 11.0128 1.75 10.0327 1.75H3.96602C2.98592 1.75 2.49588 1.75 2.12153 1.94074C1.79225 2.10852 1.52453 2.37623 1.35675 2.70552C1.16602 3.07986 1.16602 3.56991 1.16602 4.55V9.45C1.16602 10.4301 1.16602 10.9201 1.35675 11.2945C1.52453 11.6238 1.79225 11.8915 2.12153 12.0593C2.49588 12.25 2.98592 12.25 3.96602 12.25Z"
|
|
43
|
+
stroke={strokeColor}
|
|
44
|
+
strokeLinecap="round"
|
|
45
|
+
strokeLinejoin="round"
|
|
46
|
+
/>
|
|
47
|
+
</svg>
|
|
48
|
+
);
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
export default Image03Icon;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface ImageIconProps {
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const ImageIcon: React.FC<ImageIconProps> = ({ width = 18, height = 18 }) => (
|
|
10
|
+
<Svg
|
|
11
|
+
width={width}
|
|
12
|
+
height={height}
|
|
13
|
+
viewBox="0 0 18 18"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
d="M2.25 5.85C2.25 4.58988 2.25 3.95982 2.49524 3.47852C2.71095 3.05516 3.05516 2.71095 3.47852 2.49524C3.95982 2.25 4.58988 2.25 5.85 2.25H12.15C13.4101 2.25 14.0402 2.25 14.5215 2.49524C14.9448 2.71095 15.289 3.05516 15.5048 3.47852C15.75 3.95982 15.75 4.58988 15.75 5.85V12.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.15V5.85Z"
|
|
18
|
+
stroke="currentColor"
|
|
19
|
+
strokeWidth={1.5}
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
<Path
|
|
24
|
+
d="M6.75 7.125L4.5 11.25H13.5L10.125 5.625L8.25 8.25L6.75 7.125Z"
|
|
25
|
+
stroke="currentColor"
|
|
26
|
+
strokeWidth={1.5}
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
/>
|
|
30
|
+
</Svg>
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
export { ImageIcon };
|
|
34
|
+
export default ImageIcon;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
interface ImageIconProps extends SVGProps<SVGSVGElement> {
|
|
5
|
+
/** Tailwind or custom classes to style the icon */
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const ImageIcon = React.forwardRef<SVGSVGElement, ImageIconProps>(
|
|
10
|
+
({ className = "text-gray-900", width = 18, height = 18, ...props }, ref) => (
|
|
11
|
+
<svg
|
|
12
|
+
ref={ref}
|
|
13
|
+
width={width}
|
|
14
|
+
height={height}
|
|
15
|
+
viewBox="0 0 18 18"
|
|
16
|
+
fill="none"
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
className={className}
|
|
19
|
+
{...props}
|
|
20
|
+
>
|
|
21
|
+
<path
|
|
22
|
+
d="M2.25 5.85C2.25 4.58988 2.25 3.95982 2.49524 3.47852C2.71095 3.05516 3.05516 2.71095 3.47852 2.49524C3.95982 2.25 4.58988 2.25 5.85 2.25H12.15C13.4101 2.25 14.0402 2.25 14.5215 2.49524C14.9448 2.71095 15.289 3.05516 15.5048 3.47852C15.75 3.95982 15.75 4.58988 15.75 5.85V12.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.15V5.85Z"
|
|
23
|
+
stroke="currentColor"
|
|
24
|
+
strokeWidth={1.5}
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M6.75 7.125L4.5 11.25H13.5L10.125 5.625L8.25 8.25L6.75 7.125Z"
|
|
30
|
+
stroke="currentColor"
|
|
31
|
+
strokeWidth={1.5}
|
|
32
|
+
strokeLinecap="round"
|
|
33
|
+
strokeLinejoin="round"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
),
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
export default ImageIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
currentColor?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const LandingCollaborativeIcon: React.FC<IconProps> = ({ size = 24, currentColor = '#000000' }) => (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 24 24"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
d="M22 21V19C22 17.1362 20.7252 15.5701 19 15.126M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M17 21C17 19.1362 17 18.2044 16.6955 17.4693C16.2895 16.4892 15.5108 15.7105 14.5307 15.3045C13.7956 15 12.8638 15 11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z"
|
|
18
|
+
stroke={currentColor}
|
|
19
|
+
strokeWidth="1.5"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
export { LandingCollaborativeIcon };
|
|
27
|
+
export default LandingCollaborativeIcon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
currentColor?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const LandingCollaborativeIcon: React.FC<IconProps> = ({ size = 24, currentColor = "currentColor" }) => (
|
|
9
|
+
<svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 24 24"
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
d="M22 21V19C22 17.1362 20.7252 15.5701 19 15.126M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M17 21C17 19.1362 17 18.2044 16.6955 17.4693C16.2895 16.4892 15.5108 15.7105 14.5307 15.3045C13.7956 15 12.8638 15 11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z"
|
|
18
|
+
stroke={currentColor}
|
|
19
|
+
strokeWidth="1.5"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
export default LandingCollaborativeIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
currentColor?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const LandingControlsIcon: React.FC<IconProps> = ({ size = 24, currentColor = '#000000' }) => (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 24 24"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
d="M22 11V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.71569 21.2843 5.40973 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.71569 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V11.8C2 12.9201 2 13.4802 2.21799 13.908C2.40973 14.2843 2.71569 14.5903 3.09202 14.782C3.51984 15 4.0799 15 5.2 15H11M12 10H12.005M17 10H17.005M7 10H7.005M19.25 17V15.25C19.25 14.2835 18.4665 13.5 17.5 13.5C16.5335 13.5 15.75 14.2835 15.75 15.25V17M12.25 10C12.25 10.1381 12.1381 10.25 12 10.25C11.8619 10.25 11.75 10.1381 11.75 10C11.75 9.86193 11.8619 9.75 12 9.75C12.1381 9.75 12.25 9.86193 12.25 10ZM17.25 10C17.25 10.1381 17.1381 10.25 17 10.25C16.8619 10.25 16.75 10.1381 16.75 10C16.75 9.86193 16.8619 9.75 17 9.75C17.1381 9.75 17.25 9.86193 17.25 10ZM7.25 10C7.25 10.1381 7.13807 10.25 7 10.25C6.86193 10.25 6.75 10.1381 6.75 10C6.75 9.86193 6.86193 9.75 7 9.75C7.13807 9.75 7.25 9.86193 7.25 10ZM15.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V18.6C21 18.0399 21 17.7599 20.891 17.546C20.7951 17.3578 20.6422 17.2049 20.454 17.109C20.2401 17 19.9601 17 19.4 17H15.6C15.0399 17 14.7599 17 14.546 17.109C14.3578 17.2049 14.2049 17.3578 14.109 17.546C14 17.7599 14 18.0399 14 18.6V19.4C14 19.9601 14 20.2401 14.109 20.454C14.2049 20.6422 14.3578 20.7951 14.546 20.891C14.7599 21 15.0399 21 15.6 21Z"
|
|
18
|
+
stroke={currentColor}
|
|
19
|
+
strokeWidth="1.5"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
export { LandingControlsIcon };
|
|
27
|
+
export default LandingControlsIcon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
currentColor?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const LandingControlsIcon: React.FC<IconProps> = ({ size = 24, currentColor = "currentColor" }) => (
|
|
9
|
+
<svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 24 24"
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
d="M22 11V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.71569 21.2843 5.40973 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H5.2C4.0799 5 3.51984 5 3.09202 5.21799C2.71569 5.40973 2.40973 5.71569 2.21799 6.09202C2 6.51984 2 7.0799 2 8.2V11.8C2 12.9201 2 13.4802 2.21799 13.908C2.40973 14.2843 2.71569 14.5903 3.09202 14.782C3.51984 15 4.0799 15 5.2 15H11M12 10H12.005M17 10H17.005M7 10H7.005M19.25 17V15.25C19.25 14.2835 18.4665 13.5 17.5 13.5C16.5335 13.5 15.75 14.2835 15.75 15.25V17M12.25 10C12.25 10.1381 12.1381 10.25 12 10.25C11.8619 10.25 11.75 10.1381 11.75 10C11.75 9.86193 11.8619 9.75 12 9.75C12.1381 9.75 12.25 9.86193 12.25 10ZM17.25 10C17.25 10.1381 17.1381 10.25 17 10.25C16.8619 10.25 16.75 10.1381 16.75 10C16.75 9.86193 16.8619 9.75 17 9.75C17.1381 9.75 17.25 9.86193 17.25 10ZM7.25 10C7.25 10.1381 7.13807 10.25 7 10.25C6.86193 10.25 6.75 10.1381 6.75 10C6.75 9.86193 6.86193 9.75 7 9.75C7.13807 9.75 7.25 9.86193 7.25 10ZM15.6 21H19.4C19.9601 21 20.2401 21 20.454 20.891C20.6422 20.7951 20.7951 20.6422 20.891 20.454C21 20.2401 21 19.9601 21 19.4V18.6C21 18.0399 21 17.7599 20.891 17.546C20.7951 17.3578 20.6422 17.2049 20.454 17.109C20.2401 17 19.9601 17 19.4 17H15.6C15.0399 17 14.7599 17 14.546 17.109C14.3578 17.2049 14.2049 17.3578 14.109 17.546C14 17.7599 14 18.0399 14 18.6V19.4C14 19.9601 14 20.2401 14.109 20.454C14.2049 20.6422 14.3578 20.7951 14.546 20.891C14.7599 21 15.0399 21 15.6 21Z"
|
|
18
|
+
stroke={currentColor}
|
|
19
|
+
strokeWidth="1.5"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
export default LandingControlsIcon;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const LandingMusicIcon: React.FC<IconProps> = ({
|
|
11
|
+
size = 24,
|
|
12
|
+
color = '#000000',
|
|
13
|
+
strokeWidth = 1.5,
|
|
14
|
+
}) => (
|
|
15
|
+
<Svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
fill="none"
|
|
20
|
+
>
|
|
21
|
+
<Path
|
|
22
|
+
d="M9 18V6.35537C9 5.87383 9 5.63306 9.0876 5.43778C9.16482 5.26565 9.28917 5.11887 9.44627 5.0144C9.62449 4.89588 9.86198 4.8563 10.337 4.77714L19.137 3.31047C19.7779 3.20364 20.0984 3.15023 20.3482 3.243C20.5674 3.32441 20.7511 3.48005 20.8674 3.68286C21 3.91398 21 4.23889 21 4.8887V16M9 18C9 19.6568 7.65685 21 6 21C4.34315 21 3 19.6568 3 18C3 16.3431 4.34315 15 6 15C7.65685 15 9 16.3431 9 18ZM21 16C21 17.6568 19.6569 19 18 19C16.3431 19 15 17.6568 15 16C15 14.3431 16.3431 13 18 13C19.6569 13 21 14.3431 21 16Z"
|
|
23
|
+
stroke={color}
|
|
24
|
+
strokeWidth={strokeWidth}
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
</Svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
export { LandingMusicIcon };
|
|
32
|
+
export default LandingMusicIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const LandingMusicIcon: React.FC<IconProps> = ({
|
|
10
|
+
size = 24,
|
|
11
|
+
color = "currentColor",
|
|
12
|
+
strokeWidth = 1.5,
|
|
13
|
+
}) => (
|
|
14
|
+
<svg
|
|
15
|
+
width={size}
|
|
16
|
+
height={size}
|
|
17
|
+
viewBox="0 0 24 24"
|
|
18
|
+
fill="none"
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
>
|
|
21
|
+
<path
|
|
22
|
+
d="M9 18V6.35537C9 5.87383 9 5.63306 9.0876 5.43778C9.16482 5.26565 9.28917 5.11887 9.44627 5.0144C9.62449 4.89588 9.86198 4.8563 10.337 4.77714L19.137 3.31047C19.7779 3.20364 20.0984 3.15023 20.3482 3.243C20.5674 3.32441 20.7511 3.48005 20.8674 3.68286C21 3.91398 21 4.23889 21 4.8887V16M9 18C9 19.6568 7.65685 21 6 21C4.34315 21 3 19.6568 3 18C3 16.3431 4.34315 15 6 15C7.65685 15 9 16.3431 9 18ZM21 16C21 17.6568 19.6569 19 18 19C16.3431 19 15 17.6568 15 16C15 14.3431 16.3431 13 18 13C19.6569 13 21 14.3431 21 16Z"
|
|
23
|
+
stroke={color}
|
|
24
|
+
strokeWidth={strokeWidth}
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
export default LandingMusicIcon;
|