@postal-music/icons 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4909 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +4744 -0
- package/dist/index.mjs.map +1 -0
- package/dist/index.native.js +4155 -0
- package/dist/index.native.js.map +1 -0
- package/dist/index.native.mjs +3959 -0
- package/dist/index.native.mjs.map +1 -0
- package/package.json +46 -0
- package/src/icons/_icon-props.ts +7 -0
- package/src/icons/actions/CheckIcon.native.tsx +27 -0
- package/src/icons/actions/CheckIcon.web.tsx +31 -0
- package/src/icons/actions/Copy02Icon.native.tsx +23 -0
- package/src/icons/actions/Copy02Icon.web.tsx +29 -0
- package/src/icons/actions/Copy06Icon.native.tsx +27 -0
- package/src/icons/actions/Copy06Icon.web.tsx +40 -0
- package/src/icons/actions/CopyIcon.native.tsx +23 -0
- package/src/icons/actions/CopyIcon.web.tsx +22 -0
- package/src/icons/actions/Expand01Icon.native.tsx +27 -0
- package/src/icons/actions/Expand01Icon.web.tsx +33 -0
- package/src/icons/actions/LogoutIcon.native.tsx +27 -0
- package/src/icons/actions/LogoutIcon.web.tsx +31 -0
- package/src/icons/actions/MinCircleIcon.native.tsx +29 -0
- package/src/icons/actions/MinCircleIcon.web.tsx +34 -0
- package/src/icons/actions/MinimiseIcon.native.tsx +27 -0
- package/src/icons/actions/MinimiseIcon.web.tsx +33 -0
- package/src/icons/actions/MinusIcon.native.tsx +22 -0
- package/src/icons/actions/MinusIcon.web.tsx +26 -0
- package/src/icons/actions/MoreOptionsIcon.native.tsx +49 -0
- package/src/icons/actions/MoreOptionsIcon.web.tsx +64 -0
- package/src/icons/actions/MoveIcon.native.tsx +32 -0
- package/src/icons/actions/MoveIcon.web.tsx +45 -0
- package/src/icons/actions/PencilIcon.native.tsx +23 -0
- package/src/icons/actions/PencilIcon.web.tsx +29 -0
- package/src/icons/actions/PlusCircleIcon.native.tsx +27 -0
- package/src/icons/actions/PlusCircleIcon.web.tsx +31 -0
- package/src/icons/actions/PlusIcon.native.tsx +23 -0
- package/src/icons/actions/PlusIcon.web.tsx +22 -0
- package/src/icons/actions/RefreshIcon.native.tsx +25 -0
- package/src/icons/actions/RefreshIcon.web.tsx +29 -0
- package/src/icons/actions/ResetIcon.native.tsx +25 -0
- package/src/icons/actions/ResetIcon.web.tsx +36 -0
- package/src/icons/actions/SettingsIcon.native.tsx +29 -0
- package/src/icons/actions/SettingsIcon.web.tsx +33 -0
- package/src/icons/actions/SlidersIcon.native.tsx +25 -0
- package/src/icons/actions/SlidersIcon.web.tsx +29 -0
- package/src/icons/actions/SmallMagnifyIcon.native.tsx +27 -0
- package/src/icons/actions/SmallMagnifyIcon.web.tsx +34 -0
- package/src/icons/actions/Trash02Icon.native.tsx +25 -0
- package/src/icons/actions/Trash02Icon.web.tsx +33 -0
- package/src/icons/actions/TrashIcon.native.tsx +22 -0
- package/src/icons/actions/TrashIcon.web.tsx +22 -0
- package/src/icons/actions/XIcon.native.tsx +23 -0
- package/src/icons/actions/XIcon.web.tsx +21 -0
- package/src/icons/actions/index.ts +22 -0
- package/src/icons/alerts/AlertTriangleIcon.native.tsx +32 -0
- package/src/icons/alerts/AlertTriangleIcon.web.tsx +49 -0
- package/src/icons/alerts/BellIcon.native.tsx +23 -0
- package/src/icons/alerts/BellIcon.web.tsx +27 -0
- package/src/icons/alerts/CheckCircleIcon.native.tsx +28 -0
- package/src/icons/alerts/CheckCircleIcon.web.tsx +44 -0
- package/src/icons/alerts/InfoCircleIcon.native.tsx +32 -0
- package/src/icons/alerts/InfoCircleIcon.web.tsx +40 -0
- package/src/icons/alerts/InfoIcon.native.tsx +30 -0
- package/src/icons/alerts/InfoIcon.web.tsx +34 -0
- package/src/icons/alerts/InfoSquareIcon.native.tsx +25 -0
- package/src/icons/alerts/InfoSquareIcon.web.tsx +31 -0
- package/src/icons/alerts/SlashCircleIcon.native.tsx +36 -0
- package/src/icons/alerts/SlashCircleIcon.web.tsx +47 -0
- package/src/icons/alerts/XCircleIcon.native.tsx +28 -0
- package/src/icons/alerts/XCircleIcon.web.tsx +50 -0
- package/src/icons/alerts/index.ts +8 -0
- package/src/icons/arrows/ArrowDownIcon.native.tsx +29 -0
- package/src/icons/arrows/ArrowDownIcon.web.tsx +31 -0
- package/src/icons/arrows/ArrowLeftIcon.native.tsx +32 -0
- package/src/icons/arrows/ArrowLeftIcon.web.tsx +31 -0
- package/src/icons/arrows/ArrowRightIcon.native.tsx +26 -0
- package/src/icons/arrows/ArrowRightIcon.web.tsx +31 -0
- package/src/icons/arrows/ArrowUp01Icon.native.tsx +30 -0
- package/src/icons/arrows/ArrowUp01Icon.web.tsx +53 -0
- package/src/icons/arrows/ArrowUpIcon.native.tsx +32 -0
- package/src/icons/arrows/ArrowUpIcon.web.tsx +29 -0
- package/src/icons/arrows/ChevronLeftIcon.native.tsx +32 -0
- package/src/icons/arrows/ChevronLeftIcon.web.tsx +31 -0
- package/src/icons/arrows/ChevronSelectorIcon.native.tsx +32 -0
- package/src/icons/arrows/ChevronSelectorIcon.web.tsx +33 -0
- package/src/icons/arrows/NarrowUpRightIcon.native.tsx +28 -0
- package/src/icons/arrows/NarrowUpRightIcon.web.tsx +29 -0
- package/src/icons/arrows/SwitchHorizontal02Icon.native.tsx +28 -0
- package/src/icons/arrows/SwitchHorizontal02Icon.web.tsx +39 -0
- package/src/icons/arrows/UTurnIcon.native.tsx +28 -0
- package/src/icons/arrows/UTurnIcon.web.tsx +32 -0
- package/src/icons/arrows/index.ts +10 -0
- package/src/icons/brand/InstagramWhiteIcon.native.tsx +39 -0
- package/src/icons/brand/InstagramWhiteIcon.web.tsx +79 -0
- package/src/icons/brand/PostalIcon.native.tsx +26 -0
- package/src/icons/brand/PostalIcon.web.tsx +29 -0
- package/src/icons/brand/index.ts +2 -0
- package/src/icons/charts/BarChart01Icon.native.tsx +25 -0
- package/src/icons/charts/BarChart01Icon.web.tsx +34 -0
- package/src/icons/charts/BarChart10Icon.native.tsx +23 -0
- package/src/icons/charts/BarChart10Icon.web.tsx +31 -0
- package/src/icons/charts/LineChart03UpIcon.native.tsx +23 -0
- package/src/icons/charts/LineChart03UpIcon.web.tsx +31 -0
- package/src/icons/charts/index.ts +3 -0
- package/src/icons/communication/AnnotationInfoIcon.native.tsx +30 -0
- package/src/icons/communication/AnnotationInfoIcon.web.tsx +38 -0
- package/src/icons/communication/ChatBubbleDotIcon.native.tsx +31 -0
- package/src/icons/communication/ChatBubbleDotIcon.web.tsx +31 -0
- package/src/icons/communication/ChatBubbleIcon.native.tsx +30 -0
- package/src/icons/communication/ChatBubbleIcon.web.tsx +37 -0
- package/src/icons/communication/MailIcon.native.tsx +36 -0
- package/src/icons/communication/MailIcon.web.tsx +37 -0
- package/src/icons/communication/MessageSquareTextIcon.native.tsx +30 -0
- package/src/icons/communication/MessageSquareTextIcon.web.tsx +41 -0
- package/src/icons/communication/MessageTextCircle01Icon.native.tsx +29 -0
- package/src/icons/communication/MessageTextCircle01Icon.web.tsx +32 -0
- package/src/icons/communication/NotificationTextIcon.native.tsx +21 -0
- package/src/icons/communication/NotificationTextIcon.web.tsx +24 -0
- package/src/icons/communication/SendIcon.native.tsx +28 -0
- package/src/icons/communication/SendIcon.web.tsx +33 -0
- package/src/icons/communication/index.ts +8 -0
- package/src/icons/files/CameraIcon.native.tsx +30 -0
- package/src/icons/files/CameraIcon.web.tsx +31 -0
- package/src/icons/files/Download02Icon.native.tsx +30 -0
- package/src/icons/files/Download02Icon.web.tsx +31 -0
- package/src/icons/files/Download03Icon.native.tsx +32 -0
- package/src/icons/files/Download03Icon.web.tsx +33 -0
- package/src/icons/files/Download04Icon.native.tsx +34 -0
- package/src/icons/files/Download04Icon.web.tsx +58 -0
- package/src/icons/files/DownloadCircleIcon.native.tsx +30 -0
- package/src/icons/files/DownloadCircleIcon.web.tsx +39 -0
- package/src/icons/files/DownloadIcon.native.tsx +28 -0
- package/src/icons/files/DownloadIcon.web.tsx +30 -0
- package/src/icons/files/File02Icon.native.tsx +28 -0
- package/src/icons/files/File02Icon.web.tsx +30 -0
- package/src/icons/files/FileDownload02Icon.native.tsx +30 -0
- package/src/icons/files/FileDownload02Icon.web.tsx +31 -0
- package/src/icons/files/FolderGradientIcon.native.tsx +43 -0
- package/src/icons/files/FolderGradientIcon.web.tsx +47 -0
- package/src/icons/files/FolderIcon.native.tsx +28 -0
- package/src/icons/files/FolderIcon.web.tsx +27 -0
- package/src/icons/files/FolderPlusIcon.native.tsx +34 -0
- package/src/icons/files/FolderPlusIcon.web.tsx +89 -0
- package/src/icons/files/Upload01Icon.native.tsx +32 -0
- package/src/icons/files/Upload01Icon.web.tsx +84 -0
- package/src/icons/files/UploadCloudIcon.native.tsx +27 -0
- package/src/icons/files/UploadCloudIcon.web.tsx +28 -0
- package/src/icons/files/UploadIcon.native.tsx +29 -0
- package/src/icons/files/UploadIcon.web.tsx +34 -0
- package/src/icons/files/index.ts +14 -0
- package/src/icons/finance/BankNote03Icon.native.tsx +35 -0
- package/src/icons/finance/BankNote03Icon.web.tsx +65 -0
- package/src/icons/finance/CoinsStacked03Icon.native.tsx +37 -0
- package/src/icons/finance/CoinsStacked03Icon.web.tsx +71 -0
- package/src/icons/finance/CreditCardIcon.native.tsx +22 -0
- package/src/icons/finance/CreditCardIcon.web.tsx +27 -0
- package/src/icons/finance/index.ts +3 -0
- package/src/icons/general/ActivityIcon.native.tsx +28 -0
- package/src/icons/general/ActivityIcon.web.tsx +38 -0
- package/src/icons/general/BookIcon.native.tsx +27 -0
- package/src/icons/general/BookIcon.web.tsx +26 -0
- package/src/icons/general/BookmarkIcon.native.tsx +32 -0
- package/src/icons/general/BookmarkIcon.web.tsx +36 -0
- package/src/icons/general/CollaborativeIcon.native.tsx +32 -0
- package/src/icons/general/CollaborativeIcon.web.tsx +31 -0
- package/src/icons/general/DataIcon.native.tsx +35 -0
- package/src/icons/general/DataIcon.web.tsx +51 -0
- package/src/icons/general/Dataflow03Icon.native.tsx +35 -0
- package/src/icons/general/Dataflow03Icon.web.tsx +53 -0
- package/src/icons/general/Datapoints01Icon.native.tsx +44 -0
- package/src/icons/general/Datapoints01Icon.web.tsx +44 -0
- package/src/icons/general/DropBoxIcon.native.tsx +42 -0
- package/src/icons/general/DropBoxIcon.web.tsx +55 -0
- package/src/icons/general/FaceSmileIcon.native.tsx +39 -0
- package/src/icons/general/FaceSmileIcon.web.tsx +65 -0
- package/src/icons/general/Flag01Icon.native.tsx +30 -0
- package/src/icons/general/Flag01Icon.web.tsx +32 -0
- package/src/icons/general/Globe02Icon.native.tsx +37 -0
- package/src/icons/general/Globe02Icon.web.tsx +38 -0
- package/src/icons/general/Globe05Icon.native.tsx +32 -0
- package/src/icons/general/Globe05Icon.web.tsx +36 -0
- package/src/icons/general/GlobeIcon.native.tsx +47 -0
- package/src/icons/general/GlobeIcon.web.tsx +48 -0
- package/src/icons/general/Hash02Icon.native.tsx +25 -0
- package/src/icons/general/Hash02Icon.web.tsx +24 -0
- package/src/icons/general/HeartIcon.native.tsx +35 -0
- package/src/icons/general/HeartIcon.web.tsx +38 -0
- package/src/icons/general/HelpIcon.native.tsx +35 -0
- package/src/icons/general/HelpIcon.web.tsx +33 -0
- package/src/icons/general/Image01Icon.native.tsx +24 -0
- package/src/icons/general/Image01Icon.web.tsx +26 -0
- package/src/icons/general/Image03Icon.native.tsx +40 -0
- package/src/icons/general/Image03Icon.web.tsx +51 -0
- package/src/icons/general/ImageIcon.native.tsx +34 -0
- package/src/icons/general/ImageIcon.web.tsx +39 -0
- package/src/icons/general/LandingCollaborativeIcon.native.tsx +27 -0
- package/src/icons/general/LandingCollaborativeIcon.web.tsx +26 -0
- package/src/icons/general/LandingControlsIcon.native.tsx +27 -0
- package/src/icons/general/LandingControlsIcon.web.tsx +26 -0
- package/src/icons/general/LandingMusicIcon.native.tsx +32 -0
- package/src/icons/general/LandingMusicIcon.web.tsx +31 -0
- package/src/icons/general/LandingShareIcon.native.tsx +27 -0
- package/src/icons/general/LandingShareIcon.web.tsx +26 -0
- package/src/icons/general/LandingUploadIcon.native.tsx +27 -0
- package/src/icons/general/LandingUploadIcon.web.tsx +26 -0
- package/src/icons/general/LayersThree01Icon.native.tsx +28 -0
- package/src/icons/general/LayersThree01Icon.web.tsx +31 -0
- package/src/icons/general/LyricsIcon.native.tsx +40 -0
- package/src/icons/general/LyricsIcon.web.tsx +41 -0
- package/src/icons/general/MoonIcon.native.tsx +34 -0
- package/src/icons/general/MoonIcon.web.tsx +33 -0
- package/src/icons/general/MusicNoteIcon.native.tsx +32 -0
- package/src/icons/general/MusicNoteIcon.web.tsx +35 -0
- package/src/icons/general/PinIcon.native.tsx +37 -0
- package/src/icons/general/PinIcon.web.tsx +49 -0
- package/src/icons/general/QuestionCircleIcon.native.tsx +34 -0
- package/src/icons/general/QuestionCircleIcon.web.tsx +33 -0
- package/src/icons/general/Recordering01.native.tsx +28 -0
- package/src/icons/general/Recordering01.web.tsx +39 -0
- package/src/icons/general/Share01Icon.native.tsx +30 -0
- package/src/icons/general/Share01Icon.web.tsx +32 -0
- package/src/icons/general/ShareIcon.native.tsx +28 -0
- package/src/icons/general/ShareIcon.web.tsx +33 -0
- package/src/icons/general/StarIcon.native.tsx +36 -0
- package/src/icons/general/StarIcon.web.tsx +30 -0
- package/src/icons/general/Stars01Icon.native.tsx +56 -0
- package/src/icons/general/Stars01Icon.web.tsx +66 -0
- package/src/icons/general/Stars02Icon.native.tsx +40 -0
- package/src/icons/general/Stars02Icon.web.tsx +66 -0
- package/src/icons/general/Stars04Icon.native.tsx +37 -0
- package/src/icons/general/Stars04Icon.web.tsx +39 -0
- package/src/icons/general/Stars06Icon.native.tsx +37 -0
- package/src/icons/general/Stars06Icon.web.tsx +38 -0
- package/src/icons/general/TagsIcon.native.tsx +26 -0
- package/src/icons/general/TagsIcon.web.tsx +29 -0
- package/src/icons/general/ThumbsDownIcon.native.tsx +28 -0
- package/src/icons/general/ThumbsDownIcon.web.tsx +37 -0
- package/src/icons/general/Type01Icon.native.tsx +34 -0
- package/src/icons/general/Type01Icon.web.tsx +33 -0
- package/src/icons/general/index.ts +41 -0
- package/src/icons/index.ts +15 -0
- package/src/icons/media/10SecondsBackIcon.native.tsx +37 -0
- package/src/icons/media/10SecondsBackIcon.web.tsx +41 -0
- package/src/icons/media/EqualizerIcon.native.tsx +25 -0
- package/src/icons/media/EqualizerIcon.web.tsx +31 -0
- package/src/icons/media/HeadPhonesIcon.native.tsx +35 -0
- package/src/icons/media/HeadPhonesIcon.web.tsx +39 -0
- package/src/icons/media/MediaUploadIcon.native.tsx +39 -0
- package/src/icons/media/MediaUploadIcon.web.tsx +43 -0
- package/src/icons/media/NextTrackIcon.native.tsx +30 -0
- package/src/icons/media/NextTrackIcon.web.tsx +39 -0
- package/src/icons/media/PauseIcon.native.tsx +34 -0
- package/src/icons/media/PauseIcon.web.tsx +35 -0
- package/src/icons/media/PlayIcon.native.tsx +29 -0
- package/src/icons/media/PlayIcon.web.tsx +28 -0
- package/src/icons/media/PlaySquareIcon.native.tsx +38 -0
- package/src/icons/media/PlaySquareIcon.web.tsx +47 -0
- package/src/icons/media/PreviousTrackIcon.native.tsx +30 -0
- package/src/icons/media/PreviousTrackIcon.web.tsx +40 -0
- package/src/icons/media/Repeat01Icon.native.tsx +29 -0
- package/src/icons/media/Repeat01Icon.web.tsx +32 -0
- package/src/icons/media/Repeat02Icon.native.tsx +28 -0
- package/src/icons/media/Repeat02Icon.web.tsx +33 -0
- package/src/icons/media/Repeat03Icon.native.tsx +37 -0
- package/src/icons/media/Repeat03Icon.web.tsx +41 -0
- package/src/icons/media/Shuffle01Icon.native.tsx +34 -0
- package/src/icons/media/Shuffle01Icon.web.tsx +74 -0
- package/src/icons/media/TenSecondsForwardIcon.native.tsx +33 -0
- package/src/icons/media/TenSecondsForwardIcon.web.tsx +37 -0
- package/src/icons/media/VideoRecorderIcon.native.tsx +37 -0
- package/src/icons/media/VideoRecorderIcon.web.tsx +36 -0
- package/src/icons/media/VolumeIcon.native.tsx +26 -0
- package/src/icons/media/VolumeIcon.web.tsx +30 -0
- package/src/icons/media/VolumeMaxIcon.native.tsx +27 -0
- package/src/icons/media/VolumeMaxIcon.web.tsx +36 -0
- package/src/icons/media/index.ts +17 -0
- package/src/icons/navigation/AlignLeftIcon.native.tsx +21 -0
- package/src/icons/navigation/AlignLeftIcon.web.tsx +31 -0
- package/src/icons/navigation/DotgridIcon.native.tsx +40 -0
- package/src/icons/navigation/DotgridIcon.web.tsx +51 -0
- package/src/icons/navigation/FilterIcon.native.tsx +22 -0
- package/src/icons/navigation/FilterIcon.web.tsx +26 -0
- package/src/icons/navigation/Grid01Icon.native.tsx +42 -0
- package/src/icons/navigation/Grid01Icon.web.tsx +52 -0
- package/src/icons/navigation/GridIcon.native.tsx +47 -0
- package/src/icons/navigation/GridIcon.web.tsx +58 -0
- package/src/icons/navigation/HomeIcon.native.tsx +30 -0
- package/src/icons/navigation/HomeIcon.web.tsx +54 -0
- package/src/icons/navigation/ListIcon.native.tsx +25 -0
- package/src/icons/navigation/ListIcon.web.tsx +32 -0
- package/src/icons/navigation/MenuIcon.native.tsx +24 -0
- package/src/icons/navigation/MenuIcon.web.tsx +29 -0
- package/src/icons/navigation/Rows01Icon.native.tsx +29 -0
- package/src/icons/navigation/Rows01Icon.web.tsx +37 -0
- package/src/icons/navigation/Rows03Icon.native.tsx +27 -0
- package/src/icons/navigation/Rows03Icon.web.tsx +36 -0
- package/src/icons/navigation/SearchIcon.native.tsx +23 -0
- package/src/icons/navigation/SearchIcon.web.tsx +27 -0
- package/src/icons/navigation/SidebarMenuIcon.native.tsx +22 -0
- package/src/icons/navigation/SidebarMenuIcon.web.tsx +26 -0
- package/src/icons/navigation/SortIcon.native.tsx +21 -0
- package/src/icons/navigation/SortIcon.web.tsx +32 -0
- package/src/icons/navigation/index.ts +13 -0
- package/src/icons/security/EyeIcon.native.tsx +29 -0
- package/src/icons/security/EyeIcon.web.tsx +39 -0
- package/src/icons/security/Lock03Icon.native.tsx +25 -0
- package/src/icons/security/Lock03Icon.web.tsx +31 -0
- package/src/icons/security/LockIcon.native.tsx +22 -0
- package/src/icons/security/LockIcon.web.tsx +26 -0
- package/src/icons/security/LockUnlocked03Icon.native.tsx +25 -0
- package/src/icons/security/LockUnlocked03Icon.web.tsx +31 -0
- package/src/icons/security/PasswordInputIcon.native.tsx +20 -0
- package/src/icons/security/PasswordInputIcon.web.tsx +30 -0
- package/src/icons/security/index.ts +5 -0
- package/src/icons/social/AppleMusicIcon.native.tsx +44 -0
- package/src/icons/social/AppleMusicIcon.web.tsx +50 -0
- package/src/icons/social/AudiomackIcon.native.tsx +36 -0
- package/src/icons/social/AudiomackIcon.web.tsx +45 -0
- package/src/icons/social/InstagramShortsIcon.native.tsx +38 -0
- package/src/icons/social/InstagramShortsIcon.web.tsx +47 -0
- package/src/icons/social/ShazamIcon.native.tsx +33 -0
- package/src/icons/social/ShazamIcon.web.tsx +42 -0
- package/src/icons/social/SoundCloudIcon.native.tsx +29 -0
- package/src/icons/social/SoundCloudIcon.web.tsx +38 -0
- package/src/icons/social/SpotifyIcon.native.tsx +31 -0
- package/src/icons/social/SpotifyIcon.web.tsx +38 -0
- package/src/icons/social/TiktokIcon.native.tsx +38 -0
- package/src/icons/social/TiktokIcon.web.tsx +47 -0
- package/src/icons/social/YoutubeIcon.native.tsx +26 -0
- package/src/icons/social/YoutubeIcon.web.tsx +35 -0
- package/src/icons/social/YoutubeReelsIcon.native.tsx +25 -0
- package/src/icons/social/YoutubeReelsIcon.web.tsx +34 -0
- package/src/icons/social/index.ts +9 -0
- package/src/icons/time/CalendarIcon.native.tsx +32 -0
- package/src/icons/time/CalendarIcon.web.tsx +35 -0
- package/src/icons/time/ClockIcon.native.tsx +30 -0
- package/src/icons/time/ClockIcon.web.tsx +49 -0
- package/src/icons/time/index.ts +2 -0
- package/src/icons/users/AccountIcon.native.tsx +34 -0
- package/src/icons/users/AccountIcon.web.tsx +33 -0
- package/src/icons/users/UserApproveIcon.native.tsx +27 -0
- package/src/icons/users/UserApproveIcon.web.tsx +26 -0
- package/src/icons/users/UserIcon.native.tsx +34 -0
- package/src/icons/users/UserIcon.web.tsx +33 -0
- package/src/icons/users/UserPlusIcon.native.tsx +38 -0
- package/src/icons/users/UserPlusIcon.web.tsx +42 -0
- package/src/icons/users/UserXIcon.native.tsx +33 -0
- package/src/icons/users/UserXIcon.web.tsx +38 -0
- package/src/icons/users/Users03Icon.native.tsx +29 -0
- package/src/icons/users/Users03Icon.web.tsx +31 -0
- package/src/icons/users/UsersIcon.native.tsx +28 -0
- package/src/icons/users/UsersIcon.web.tsx +27 -0
- package/src/icons/users/UsersPlusIcon.native.tsx +27 -0
- package/src/icons/users/UsersPlusIcon.web.tsx +31 -0
- package/src/icons/users/index.ts +8 -0
- package/src/index.ts +2 -0
- package/src/tokens/colors.ts +55 -0
- package/src/tokens/index.ts +4 -0
- package/src/tokens/radius.ts +16 -0
- package/src/tokens/spacing.ts +27 -0
- package/src/tokens/typography.ts +42 -0
- package/src/utils/cn.ts +3 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// components/icons/thumbs-down-icon.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
|
|
4
|
+
type ThumbsDownIconProps = Omit<
|
|
5
|
+
React.SVGProps<SVGSVGElement>,
|
|
6
|
+
"width" | "height"
|
|
7
|
+
> & {
|
|
8
|
+
size?: number;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export const ThumbsDownIcon = ({
|
|
12
|
+
size = 18,
|
|
13
|
+
className,
|
|
14
|
+
...props
|
|
15
|
+
}: ThumbsDownIconProps) => {
|
|
16
|
+
return (
|
|
17
|
+
<svg
|
|
18
|
+
width={size}
|
|
19
|
+
height={size}
|
|
20
|
+
viewBox="0 0 18 18"
|
|
21
|
+
fill="none"
|
|
22
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
23
|
+
role="img"
|
|
24
|
+
aria-label={props["aria-label"] ?? "Thumbs down icon"}
|
|
25
|
+
className={className}
|
|
26
|
+
{...props}
|
|
27
|
+
>
|
|
28
|
+
<path
|
|
29
|
+
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"
|
|
30
|
+
stroke="currentColor"
|
|
31
|
+
strokeWidth={1.25}
|
|
32
|
+
strokeLinecap="round"
|
|
33
|
+
strokeLinejoin="round"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
);
|
|
37
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface Type01IconProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
stroke?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const Type01Icon: React.FC<Type01IconProps> = ({
|
|
11
|
+
size = 20,
|
|
12
|
+
stroke = '#000000',
|
|
13
|
+
strokeWidth = 1.5,
|
|
14
|
+
}) => {
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
width={size}
|
|
18
|
+
height={size}
|
|
19
|
+
viewBox="0 0 20 20"
|
|
20
|
+
fill="none"
|
|
21
|
+
>
|
|
22
|
+
<Path
|
|
23
|
+
d="M3.33337 5.83331C3.33337 5.05674 3.33337 4.66846 3.46024 4.36217C3.6294 3.95379 3.95385 3.62934 4.36223 3.46018C4.66852 3.33331 5.0568 3.33331 5.83337 3.33331H14.1667C14.9433 3.33331 15.3316 3.33331 15.6378 3.46018C16.0462 3.62934 16.3707 3.95379 16.5398 4.36217C16.6667 4.66846 16.6667 5.05674 16.6667 5.83331M7.50004 16.6666H12.5M10 3.33331V16.6666"
|
|
24
|
+
stroke={stroke}
|
|
25
|
+
strokeWidth={strokeWidth}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</Svg>
|
|
30
|
+
);
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { Type01Icon };
|
|
34
|
+
export default Type01Icon;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
interface Type01IconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
function Type01Icon({
|
|
8
|
+
size = 20,
|
|
9
|
+
stroke = "currentColor",
|
|
10
|
+
strokeWidth = 1.5,
|
|
11
|
+
...props
|
|
12
|
+
}: Type01IconProps) {
|
|
13
|
+
return (
|
|
14
|
+
<svg
|
|
15
|
+
width={size}
|
|
16
|
+
height={size}
|
|
17
|
+
viewBox="0 0 20 20"
|
|
18
|
+
fill="none"
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
{...props}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M3.33337 5.83331C3.33337 5.05674 3.33337 4.66846 3.46024 4.36217C3.6294 3.95379 3.95385 3.62934 4.36223 3.46018C4.66852 3.33331 5.0568 3.33331 5.83337 3.33331H14.1667C14.9433 3.33331 15.3316 3.33331 15.6378 3.46018C16.0462 3.62934 16.3707 3.95379 16.5398 4.36217C16.6667 4.66846 16.6667 5.05674 16.6667 5.83331M7.50004 16.6666H12.5M10 3.33331V16.6666"
|
|
24
|
+
stroke={stroke}
|
|
25
|
+
strokeWidth={strokeWidth}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</svg>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export default Type01Icon;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export { default as ActivityIcon } from './ActivityIcon';
|
|
2
|
+
export { default as BookIcon } from './BookIcon';
|
|
3
|
+
export { default as BookmarkIcon } from './BookmarkIcon';
|
|
4
|
+
export { default as CollaborativeIcon } from './CollaborativeIcon';
|
|
5
|
+
export { default as DataIcon } from './DataIcon';
|
|
6
|
+
export { default as Dataflow03Icon } from './Dataflow03Icon';
|
|
7
|
+
export { default as Datapoints01Icon } from './Datapoints01Icon';
|
|
8
|
+
export { default as DropBoxIcon } from './DropBoxIcon';
|
|
9
|
+
export { default as FaceSmileIcon } from './FaceSmileIcon';
|
|
10
|
+
export { default as Flag01Icon } from './Flag01Icon';
|
|
11
|
+
export { default as GlobeIcon } from './GlobeIcon';
|
|
12
|
+
export { default as Globe02Icon } from './Globe02Icon';
|
|
13
|
+
export { default as Globe05Icon } from './Globe05Icon';
|
|
14
|
+
export { default as Hash02Icon } from './Hash02Icon';
|
|
15
|
+
export { HeartIcon } from './HeartIcon';
|
|
16
|
+
export { default as HelpIcon } from './HelpIcon';
|
|
17
|
+
export { default as ImageIcon } from './ImageIcon';
|
|
18
|
+
export { default as Image01Icon } from './Image01Icon';
|
|
19
|
+
export { default as Image03Icon } from './Image03Icon';
|
|
20
|
+
export { default as LandingCollaborativeIcon } from './LandingCollaborativeIcon';
|
|
21
|
+
export { default as LandingControlsIcon } from './LandingControlsIcon';
|
|
22
|
+
export { default as LandingMusicIcon } from './LandingMusicIcon';
|
|
23
|
+
export { default as LandingShareIcon } from './LandingShareIcon';
|
|
24
|
+
export { default as LandingUploadIcon } from './LandingUploadIcon';
|
|
25
|
+
export { default as LayersThree01Icon } from './LayersThree01Icon';
|
|
26
|
+
export { default as LyricsIcon } from './LyricsIcon';
|
|
27
|
+
export { default as MoonIcon } from './MoonIcon';
|
|
28
|
+
export { default as MusicNoteIcon } from './MusicNoteIcon';
|
|
29
|
+
export { default as PinIcon } from './PinIcon';
|
|
30
|
+
export { default as QuestionCircleIcon } from './QuestionCircleIcon';
|
|
31
|
+
export { default as Recording01Icon } from './Recordering01';
|
|
32
|
+
export { default as Share01Icon } from './Share01Icon';
|
|
33
|
+
export { default as ShareIcon } from './ShareIcon';
|
|
34
|
+
export { default as StarIcon } from './StarIcon';
|
|
35
|
+
export { default as Stars01Icon } from './Stars01Icon';
|
|
36
|
+
export { default as Stars02Icon } from './Stars02Icon';
|
|
37
|
+
export { default as Stars04Icon } from './Stars04Icon';
|
|
38
|
+
export { default as Stars06Icon } from './Stars06Icon';
|
|
39
|
+
export { default as TagsIcon } from './TagsIcon';
|
|
40
|
+
export { default as ThumbsDownIcon } from './ThumbsDownIcon';
|
|
41
|
+
export { default as Type01Icon } from './Type01Icon';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from './actions';
|
|
2
|
+
export * from './alerts';
|
|
3
|
+
export * from './arrows';
|
|
4
|
+
export * from './brand';
|
|
5
|
+
export * from './charts';
|
|
6
|
+
export * from './communication';
|
|
7
|
+
export * from './files';
|
|
8
|
+
export * from './finance';
|
|
9
|
+
export * from './general';
|
|
10
|
+
export * from './media';
|
|
11
|
+
export * from './navigation';
|
|
12
|
+
export * from './security';
|
|
13
|
+
export * from './social';
|
|
14
|
+
export * from './time';
|
|
15
|
+
export * from './users';
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type Props = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const TenSecondsBackIcon = ({ size = 20 }: Props) => (
|
|
9
|
+
<Svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 20 20"
|
|
13
|
+
fill="none"
|
|
14
|
+
>
|
|
15
|
+
<Path
|
|
16
|
+
d="M7.948 13.9027C7.60633 13.9027 7.323 13.6193 7.323 13.2777V10.4527L7.16466 10.6277C6.93133 10.886 6.53966 10.9027 6.28133 10.6777C6.023 10.4443 6.00633 10.0527 6.23133 9.79432L7.48133 8.40265C7.65633 8.21097 7.93132 8.14429 8.17299 8.23596C8.41462 8.32763 8.57296 8.56099 8.57296 8.81932V13.2777C8.57296 13.6277 8.298 13.9027 7.948 13.9027Z"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
<Path
|
|
20
|
+
d="M8.35033 4.36174C8.20863 4.36174 8.0753 4.32009 7.95863 4.22009C7.69197 4.00343 7.65031 3.61177 7.85864 3.3451L9.50866 1.28679C9.72532 1.02013 10.117 0.97841 10.3837 1.18674C10.6503 1.39508 10.692 1.79512 10.4837 2.06179L8.83366 4.12009C8.71699 4.27843 8.53366 4.36174 8.35033 4.36174Z"
|
|
21
|
+
fill="currentColor"
|
|
22
|
+
/>
|
|
23
|
+
<Path
|
|
24
|
+
d="M9.99819 18.9691C5.57319 18.9691 1.96484 15.369 1.96484 10.9357C1.96484 9.21065 2.52319 7.55234 3.58985 6.13568C3.79819 5.86068 4.18984 5.80238 4.46484 6.01071C4.73984 6.21904 4.79819 6.6107 4.58986 6.8857C3.68986 8.0857 3.21484 9.48565 3.21484 10.9357C3.21484 14.6773 6.25652 17.7191 9.99819 17.7191C13.7399 17.7191 16.7815 14.6773 16.7815 10.9357C16.7815 7.19402 13.7399 4.15234 9.99819 4.15234C9.51486 4.15234 9.02319 4.2107 8.48986 4.3357C8.15652 4.4107 7.81486 4.20237 7.73986 3.86904C7.66486 3.5357 7.87319 3.19402 8.20653 3.11902C8.83153 2.97735 9.42319 2.90234 9.99819 2.90234C14.4232 2.90234 18.0315 6.50235 18.0315 10.9357C18.0315 15.369 14.4232 18.9691 9.99819 18.9691Z"
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
/>
|
|
27
|
+
<Path
|
|
28
|
+
d="M11.6667 13.9036C10.4 13.9036 9.375 12.8786 9.375 11.612V10.487C9.375 9.2203 10.4 8.19531 11.6667 8.19531C12.9333 8.19531 13.9583 9.2203 13.9583 10.487V11.612C13.9583 12.8786 12.9333 13.9036 11.6667 13.9036ZM11.6667 9.45364C11.0917 9.45364 10.625 9.9203 10.625 10.4953V11.6203C10.625 12.1953 11.0917 12.662 11.6667 12.662C12.2417 12.662 12.7083 12.1953 12.7083 11.6203V10.4953C12.7083 9.9203 12.2417 9.45364 11.6667 9.45364Z"
|
|
29
|
+
fill="currentColor"
|
|
30
|
+
/>
|
|
31
|
+
</Svg>
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
TenSecondsBackIcon.displayName = "TenSecondsBackIcon";
|
|
35
|
+
|
|
36
|
+
export { TenSecondsBackIcon };
|
|
37
|
+
export default TenSecondsBackIcon;
|
|
@@ -0,0 +1,41 @@
|
|
|
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 TenSecondsBackIcon = React.forwardRef<SVGSVGElement, Props>(
|
|
9
|
+
({ size = 20, ...props }, ref) => (
|
|
10
|
+
<svg
|
|
11
|
+
ref={ref}
|
|
12
|
+
width={size}
|
|
13
|
+
height={size}
|
|
14
|
+
viewBox="0 0 20 20"
|
|
15
|
+
fill="none"
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
{...props}
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
d="M7.948 13.9027C7.60633 13.9027 7.323 13.6193 7.323 13.2777V10.4527L7.16466 10.6277C6.93133 10.886 6.53966 10.9027 6.28133 10.6777C6.023 10.4443 6.00633 10.0527 6.23133 9.79432L7.48133 8.40265C7.65633 8.21097 7.93132 8.14429 8.17299 8.23596C8.41462 8.32763 8.57296 8.56099 8.57296 8.81932V13.2777C8.57296 13.6277 8.298 13.9027 7.948 13.9027Z"
|
|
21
|
+
fill="currentColor"
|
|
22
|
+
/>
|
|
23
|
+
<path
|
|
24
|
+
d="M8.35033 4.36174C8.20863 4.36174 8.0753 4.32009 7.95863 4.22009C7.69197 4.00343 7.65031 3.61177 7.85864 3.3451L9.50866 1.28679C9.72532 1.02013 10.117 0.97841 10.3837 1.18674C10.6503 1.39508 10.692 1.79512 10.4837 2.06179L8.83366 4.12009C8.71699 4.27843 8.53366 4.36174 8.35033 4.36174Z"
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
d="M9.99819 18.9691C5.57319 18.9691 1.96484 15.369 1.96484 10.9357C1.96484 9.21065 2.52319 7.55234 3.58985 6.13568C3.79819 5.86068 4.18984 5.80238 4.46484 6.01071C4.73984 6.21904 4.79819 6.6107 4.58986 6.8857C3.68986 8.0857 3.21484 9.48565 3.21484 10.9357C3.21484 14.6773 6.25652 17.7191 9.99819 17.7191C13.7399 17.7191 16.7815 14.6773 16.7815 10.9357C16.7815 7.19402 13.7399 4.15234 9.99819 4.15234C9.51486 4.15234 9.02319 4.2107 8.48986 4.3357C8.15652 4.4107 7.81486 4.20237 7.73986 3.86904C7.66486 3.5357 7.87319 3.19402 8.20653 3.11902C8.83153 2.97735 9.42319 2.90234 9.99819 2.90234C14.4232 2.90234 18.0315 6.50235 18.0315 10.9357C18.0315 15.369 14.4232 18.9691 9.99819 18.9691Z"
|
|
29
|
+
fill="currentColor"
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
d="M11.6667 13.9036C10.4 13.9036 9.375 12.8786 9.375 11.612V10.487C9.375 9.2203 10.4 8.19531 11.6667 8.19531C12.9333 8.19531 13.9583 9.2203 13.9583 10.487V11.612C13.9583 12.8786 12.9333 13.9036 11.6667 13.9036ZM11.6667 9.45364C11.0917 9.45364 10.625 9.9203 10.625 10.4953V11.6203C10.625 12.1953 11.0917 12.662 11.6667 12.662C12.2417 12.662 12.7083 12.1953 12.7083 11.6203V10.4953C12.7083 9.9203 12.2417 9.45364 11.6667 9.45364Z"
|
|
33
|
+
fill="currentColor"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
)
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
TenSecondsBackIcon.displayName = "TenSecondsBackIcon";
|
|
40
|
+
|
|
41
|
+
export default TenSecondsBackIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
export default function EqualizerIcon({
|
|
5
|
+
size = 18,
|
|
6
|
+
}: {
|
|
7
|
+
size?: number;
|
|
8
|
+
}) {
|
|
9
|
+
return (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 18 18"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
d="M2.25 7.5L2.25 10.5M5.625 8.25V9.75M9 4.5V13.5M12.375 2.25V15.75M15.75 7.5V10.5"
|
|
18
|
+
stroke="currentColor"
|
|
19
|
+
strokeWidth="1.5"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import React from "react";
|
|
4
|
+
|
|
5
|
+
export default function EqualizerIcon({
|
|
6
|
+
className,
|
|
7
|
+
size = 18,
|
|
8
|
+
}: {
|
|
9
|
+
className?: string;
|
|
10
|
+
size?: number;
|
|
11
|
+
}) {
|
|
12
|
+
return (
|
|
13
|
+
<svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 18 18"
|
|
17
|
+
fill="none"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
className={className}
|
|
20
|
+
aria-label="Equalizer icon"
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M2.25 7.5L2.25 10.5M5.625 8.25V9.75M9 4.5V13.5M12.375 2.25V15.75M15.75 7.5V10.5"
|
|
24
|
+
stroke="currentColor"
|
|
25
|
+
strokeWidth="1.5"
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</svg>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type HeadphonesIconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export default function HeadphonesIcon({
|
|
9
|
+
size = 15,
|
|
10
|
+
}: HeadphonesIconProps) {
|
|
11
|
+
return (
|
|
12
|
+
<Svg
|
|
13
|
+
width={size}
|
|
14
|
+
height={size}
|
|
15
|
+
viewBox="0 0 15 15"
|
|
16
|
+
fill="none"
|
|
17
|
+
>
|
|
18
|
+
<Path
|
|
19
|
+
d="M1.875 10.3125C1.875 9.44955 2.57456 8.75 3.4375 8.75C4.30044 8.75 5 9.44955 5 10.3125V11.5625C5 12.4254 4.30044 13.125 3.4375 13.125C2.57456 13.125 1.875 12.4254 1.875 11.5625V10.3125Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<Path
|
|
23
|
+
d="M10 10.3125C10 9.44955 10.6996 8.75 11.5625 8.75C12.4254 8.75 13.125 9.44955 13.125 10.3125V11.5625C13.125 12.4254 12.4254 13.125 11.5625 13.125C10.6996 13.125 10 12.4254 10 11.5625V10.3125Z"
|
|
24
|
+
fill="currentColor"
|
|
25
|
+
/>
|
|
26
|
+
<Path
|
|
27
|
+
d="M13.125 11.25V7.5C13.125 4.3934 10.6066 1.875 7.5 1.875C4.3934 1.875 1.875 4.3934 1.875 7.5V11.25M3.4375 13.125C2.57456 13.125 1.875 12.4254 1.875 11.5625V10.3125C1.875 9.44956 2.57456 8.75 3.4375 8.75C4.30044 8.75 5 9.44956 5 10.3125V11.5625C5 12.4254 4.30044 13.125 3.4375 13.125ZM11.5625 13.125C10.6996 13.125 10 12.4254 10 11.5625V10.3125C10 9.44956 10.6996 8.75 11.5625 8.75C12.4254 8.75 13.125 9.44956 13.125 10.3125V11.5625C13.125 12.4254 12.4254 13.125 11.5625 13.125Z"
|
|
28
|
+
stroke="currentColor"
|
|
29
|
+
strokeWidth="1.25"
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
</Svg>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type HeadphonesIconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export default function HeadphonesIcon({
|
|
8
|
+
size = 15,
|
|
9
|
+
className,
|
|
10
|
+
...props
|
|
11
|
+
}: HeadphonesIconProps) {
|
|
12
|
+
return (
|
|
13
|
+
<svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 15 15"
|
|
17
|
+
fill="none"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
className={className}
|
|
20
|
+
{...props}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M1.875 10.3125C1.875 9.44955 2.57456 8.75 3.4375 8.75C4.30044 8.75 5 9.44955 5 10.3125V11.5625C5 12.4254 4.30044 13.125 3.4375 13.125C2.57456 13.125 1.875 12.4254 1.875 11.5625V10.3125Z"
|
|
24
|
+
fill="currentColor"
|
|
25
|
+
/>
|
|
26
|
+
<path
|
|
27
|
+
d="M10 10.3125C10 9.44955 10.6996 8.75 11.5625 8.75C12.4254 8.75 13.125 9.44955 13.125 10.3125V11.5625C13.125 12.4254 12.4254 13.125 11.5625 13.125C10.6996 13.125 10 12.4254 10 11.5625V10.3125Z"
|
|
28
|
+
fill="currentColor"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
d="M13.125 11.25V7.5C13.125 4.3934 10.6066 1.875 7.5 1.875C4.3934 1.875 1.875 4.3934 1.875 7.5V11.25M3.4375 13.125C2.57456 13.125 1.875 12.4254 1.875 11.5625V10.3125C1.875 9.44956 2.57456 8.75 3.4375 8.75C4.30044 8.75 5 9.44956 5 10.3125V11.5625C5 12.4254 4.30044 13.125 3.4375 13.125ZM11.5625 13.125C10.6996 13.125 10 12.4254 10 11.5625V10.3125C10 9.44956 10.6996 8.75 11.5625 8.75C12.4254 8.75 13.125 9.44956 13.125 10.3125V11.5625C13.125 12.4254 12.4254 13.125 11.5625 13.125Z"
|
|
32
|
+
stroke="currentColor"
|
|
33
|
+
strokeWidth="1.25"
|
|
34
|
+
strokeLinecap="round"
|
|
35
|
+
strokeLinejoin="round"
|
|
36
|
+
/>
|
|
37
|
+
</svg>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
color?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const MediaUploadIcon: React.FC<IconProps> = ({
|
|
10
|
+
size = 24,
|
|
11
|
+
color = '#000000',
|
|
12
|
+
}) => {
|
|
13
|
+
return (
|
|
14
|
+
<Svg
|
|
15
|
+
width={size}
|
|
16
|
+
height={size}
|
|
17
|
+
viewBox="0 0 10 10"
|
|
18
|
+
fill="none"
|
|
19
|
+
>
|
|
20
|
+
<G clipPath="url(#clip0)">
|
|
21
|
+
<Path
|
|
22
|
+
d="M1.77971 8.63663L4.52827 5.88807C4.69328 5.72306 4.77578 5.64056 4.87092 5.60965C4.9546 5.58246 5.04475 5.58246 5.12843 5.60965C5.22357 5.64056 5.30607 5.72307 5.47108 5.88807L8.20131 8.6183M5.83301 6.25L7.02827 5.05474C7.19328 4.88973 7.27578 4.80723 7.37092 4.77632C7.4546 4.74912 7.54475 4.74912 7.62843 4.77632C7.72357 4.80723 7.80607 4.88973 7.97108 5.05474L9.16634 6.25M4.16634 3.75C4.16634 4.21024 3.79325 4.58333 3.33301 4.58333C2.87277 4.58333 2.49967 4.21024 2.49967 3.75C2.49967 3.28976 2.87277 2.91667 3.33301 2.91667C3.79325 2.91667 4.16634 3.28976 4.16634 3.75ZM2.83301 8.75H7.16634C7.86641 8.75 8.21644 8.75 8.48383 8.61376C8.71903 8.49392 8.91026 8.30269 9.0301 8.06749C9.16634 7.8001 9.16634 7.45007 9.16634 6.75V3.25C9.16634 2.54993 9.16634 2.1999 9.0301 1.93251C8.91026 1.69731 8.71903 1.50608 8.48383 1.38624C8.21644 1.25 7.86641 1.25 7.16634 1.25H2.83301C2.13294 1.25 1.78291 1.25 1.51552 1.38624C1.28032 1.50608 1.08909 1.69731 0.96925 1.93251C0.833008 2.1999 0.833008 2.54993 0.833008 3.25V6.75C0.833008 7.45007 0.833008 7.8001 0.96925 8.06749C1.08909 8.30269 1.28032 8.49392 1.51552 8.61376C1.78291 8.75 2.13294 8.75 2.83301 8.75Z"
|
|
23
|
+
stroke={color}
|
|
24
|
+
strokeWidth="0.75"
|
|
25
|
+
strokeLinecap="round"
|
|
26
|
+
strokeLinejoin="round"
|
|
27
|
+
/>
|
|
28
|
+
</G>
|
|
29
|
+
<Defs>
|
|
30
|
+
<ClipPath id="clip0">
|
|
31
|
+
<Rect width="10" height="10" fill="white" />
|
|
32
|
+
</ClipPath>
|
|
33
|
+
</Defs>
|
|
34
|
+
</Svg>
|
|
35
|
+
);
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export { MediaUploadIcon };
|
|
39
|
+
export default MediaUploadIcon;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
color?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const MediaUploadIcon: React.FC<IconProps> = ({
|
|
10
|
+
size = 24,
|
|
11
|
+
color = 'currentColor',
|
|
12
|
+
className,
|
|
13
|
+
...props
|
|
14
|
+
}) => {
|
|
15
|
+
return (
|
|
16
|
+
<svg
|
|
17
|
+
className={className}
|
|
18
|
+
width={size}
|
|
19
|
+
height={size}
|
|
20
|
+
viewBox="0 0 10 10"
|
|
21
|
+
fill="none"
|
|
22
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
<g clipPath="url(#clip0)">
|
|
26
|
+
<path
|
|
27
|
+
d="M1.77971 8.63663L4.52827 5.88807C4.69328 5.72306 4.77578 5.64056 4.87092 5.60965C4.9546 5.58246 5.04475 5.58246 5.12843 5.60965C5.22357 5.64056 5.30607 5.72307 5.47108 5.88807L8.20131 8.6183M5.83301 6.25L7.02827 5.05474C7.19328 4.88973 7.27578 4.80723 7.37092 4.77632C7.4546 4.74912 7.54475 4.74912 7.62843 4.77632C7.72357 4.80723 7.80607 4.88973 7.97108 5.05474L9.16634 6.25M4.16634 3.75C4.16634 4.21024 3.79325 4.58333 3.33301 4.58333C2.87277 4.58333 2.49967 4.21024 2.49967 3.75C2.49967 3.28976 2.87277 2.91667 3.33301 2.91667C3.79325 2.91667 4.16634 3.28976 4.16634 3.75ZM2.83301 8.75H7.16634C7.86641 8.75 8.21644 8.75 8.48383 8.61376C8.71903 8.49392 8.91026 8.30269 9.0301 8.06749C9.16634 7.8001 9.16634 7.45007 9.16634 6.75V3.25C9.16634 2.54993 9.16634 2.1999 9.0301 1.93251C8.91026 1.69731 8.71903 1.50608 8.48383 1.38624C8.21644 1.25 7.86641 1.25 7.16634 1.25H2.83301C2.13294 1.25 1.78291 1.25 1.51552 1.38624C1.28032 1.50608 1.08909 1.69731 0.96925 1.93251C0.833008 2.1999 0.833008 2.54993 0.833008 3.25V6.75C0.833008 7.45007 0.833008 7.8001 0.96925 8.06749C1.08909 8.30269 1.28032 8.49392 1.51552 8.61376C1.78291 8.75 2.13294 8.75 2.83301 8.75Z"
|
|
28
|
+
stroke={color}
|
|
29
|
+
strokeWidth="0.75"
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
</g>
|
|
34
|
+
<defs>
|
|
35
|
+
<clipPath id="clip0">
|
|
36
|
+
<rect width="10" height="10" fill="white" />
|
|
37
|
+
</clipPath>
|
|
38
|
+
</defs>
|
|
39
|
+
</svg>
|
|
40
|
+
);
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
export default MediaUploadIcon;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type NextTrackIconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
color?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const NextTrackIcon = ({ size = 15, color = '#000000' }: NextTrackIconProps) => {
|
|
10
|
+
return (
|
|
11
|
+
<Svg
|
|
12
|
+
width={size}
|
|
13
|
+
height={size}
|
|
14
|
+
viewBox="0 0 15 15"
|
|
15
|
+
fill="none"
|
|
16
|
+
>
|
|
17
|
+
<Path
|
|
18
|
+
fillRule="evenodd"
|
|
19
|
+
clipRule="evenodd"
|
|
20
|
+
d="M0 1.72291C0 0.313108 1.60056 -0.485905 2.73822 0.323754L10.8559 6.10102C11.8203 6.78739 11.8203 8.21298 10.8559 8.89934L2.73822 14.6767C1.60056 15.4863 0 14.6873 0 13.2774V1.72291ZM15 1.15406C15 0.516805 14.4834 0.00021111 13.8462 0.00021111C13.2089 0.00021111 12.6923 0.516805 12.6923 1.15406V13.8464C12.6923 14.4836 13.2089 15.0002 13.8462 15.0002C14.4834 15.0002 15 14.4836 15 13.8464V1.15406Z"
|
|
21
|
+
fill={color}
|
|
22
|
+
/>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
NextTrackIcon.displayName = "NextTrackIcon";
|
|
28
|
+
|
|
29
|
+
export { NextTrackIcon };
|
|
30
|
+
export default NextTrackIcon;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type NextTrackIconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
color?: string;
|
|
6
|
+
label?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const NextTrackIcon = React.forwardRef<SVGSVGElement, NextTrackIconProps>(
|
|
10
|
+
({ size = 15, color = "currentColor", label, className, ...props }, ref) => {
|
|
11
|
+
const accessibility = label
|
|
12
|
+
? { role: "img", "aria-label": label }
|
|
13
|
+
: { "aria-hidden": true };
|
|
14
|
+
|
|
15
|
+
return (
|
|
16
|
+
<svg
|
|
17
|
+
ref={ref}
|
|
18
|
+
width={size}
|
|
19
|
+
height={size}
|
|
20
|
+
viewBox="0 0 15 15"
|
|
21
|
+
fill="none"
|
|
22
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
23
|
+
className={className}
|
|
24
|
+
{...accessibility}
|
|
25
|
+
{...props}
|
|
26
|
+
>
|
|
27
|
+
<path
|
|
28
|
+
fillRule="evenodd"
|
|
29
|
+
clipRule="evenodd"
|
|
30
|
+
d="M0 1.72291C0 0.313108 1.60056 -0.485905 2.73822 0.323754L10.8559 6.10102C11.8203 6.78739 11.8203 8.21298 10.8559 8.89934L2.73822 14.6767C1.60056 15.4863 0 14.6873 0 13.2774V1.72291ZM15 1.15406C15 0.516805 14.4834 0.00021111 13.8462 0.00021111C13.2089 0.00021111 12.6923 0.516805 12.6923 1.15406V13.8464C12.6923 14.4836 13.2089 15.0002 13.8462 15.0002C14.4834 15.0002 15 14.4836 15 13.8464V1.15406Z"
|
|
31
|
+
fill={color}
|
|
32
|
+
/>
|
|
33
|
+
</svg>
|
|
34
|
+
);
|
|
35
|
+
},
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
NextTrackIcon.displayName = "NextTrackIcon";
|
|
39
|
+
export default NextTrackIcon;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const PauseIcon: React.FC<IconProps> = ({ size = 20, color = '#000000' }) => (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 20 20"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
d="M7 16.5V3.5"
|
|
18
|
+
stroke={color}
|
|
19
|
+
strokeWidth="3"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
<Path
|
|
24
|
+
d="M13 16.5V3.5"
|
|
25
|
+
stroke={color}
|
|
26
|
+
strokeWidth="3"
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
/>
|
|
30
|
+
</Svg>
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
export { PauseIcon };
|
|
34
|
+
export default PauseIcon;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const PauseIcon: React.FC<IconProps> = ({ size = 20, color = "currentColor" }) => (
|
|
9
|
+
<svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 20 20"
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
>
|
|
16
|
+
{/* Left bar */}
|
|
17
|
+
<path
|
|
18
|
+
d="M7 16.5V3.5"
|
|
19
|
+
stroke={color}
|
|
20
|
+
strokeWidth="3"
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
{/* Right bar */}
|
|
25
|
+
<path
|
|
26
|
+
d="M13 16.5V3.5"
|
|
27
|
+
stroke={color}
|
|
28
|
+
strokeWidth="3"
|
|
29
|
+
strokeLinecap="round"
|
|
30
|
+
strokeLinejoin="round"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
export default PauseIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const PlayIcon: React.FC<IconProps> = ({ size = 20, color = '#000000' }) => (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 22 20"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
transform="translate(2, 0)"
|
|
18
|
+
d="M4.16602 4.1576C4.16602 3.3483 4.16602 2.94365 4.33476 2.72059C4.48176 2.52626 4.70645 2.40601 4.94968 2.39149C5.22888 2.37482 5.56557 2.59928 6.23895 3.0482L15.0019 8.89018C15.5583 9.26111 15.8365 9.44658 15.9335 9.68035C16.0182 9.88473 16.0182 10.1144 15.9335 10.3188C15.8365 10.5526 15.5583 10.738 15.0019 11.109L6.23895 16.951C5.56557 17.3999 5.22888 17.6243 4.94968 17.6077C4.70645 17.5931 4.48176 17.4729 4.33476 17.2786C4.16602 17.0555 4.16602 16.6509 4.16602 15.8416V4.1576Z"
|
|
19
|
+
fill={color}
|
|
20
|
+
stroke={color}
|
|
21
|
+
strokeWidth="2"
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
|
|
28
|
+
export { PlayIcon };
|
|
29
|
+
export default PlayIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const PlayIcon: React.FC<IconProps> = ({ size = 20, color = "currentColor" }) => (
|
|
9
|
+
<svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 22 20" // widened from 20 to 22
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
transform="translate(2, 0)" // shifts everything 2px right
|
|
18
|
+
d="M4.16602 4.1576C4.16602 3.3483 4.16602 2.94365 4.33476 2.72059C4.48176 2.52626 4.70645 2.40601 4.94968 2.39149C5.22888 2.37482 5.56557 2.59928 6.23895 3.0482L15.0019 8.89018C15.5583 9.26111 15.8365 9.44658 15.9335 9.68035C16.0182 9.88473 16.0182 10.1144 15.9335 10.3188C15.8365 10.5526 15.5583 10.738 15.0019 11.109L6.23895 16.951C5.56557 17.3999 5.22888 17.6243 4.94968 17.6077C4.70645 17.5931 4.48176 17.4729 4.33476 17.2786C4.16602 17.0555 4.16602 16.6509 4.16602 15.8416V4.1576Z"
|
|
19
|
+
fill={color}
|
|
20
|
+
stroke={color}
|
|
21
|
+
strokeWidth="2"
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
|
|
28
|
+
export default PlayIcon;
|