@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,38 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type PlaySquareIconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export const PlaySquareIcon = ({ size }: PlaySquareIconProps) => {
|
|
9
|
+
const dimension = size ?? 22;
|
|
10
|
+
|
|
11
|
+
return (
|
|
12
|
+
<Svg
|
|
13
|
+
width={dimension}
|
|
14
|
+
height={dimension}
|
|
15
|
+
viewBox="0 0 22 22"
|
|
16
|
+
fill="none"
|
|
17
|
+
>
|
|
18
|
+
<Path
|
|
19
|
+
d="M8.70833 8.21822C8.70833 7.78071 8.70833 7.56195 8.79976 7.43983C8.87944 7.3334 9.0014 7.26682 9.13401 7.25734C9.28619 7.24648 9.4702 7.36477 9.83822 7.60136L14.1654 10.3831C14.4848 10.5884 14.6445 10.6911 14.6996 10.8216C14.7478 10.9357 14.7478 11.0643 14.6996 11.1784C14.6445 11.3089 14.4848 11.4116 14.1654 11.6169L9.83822 14.3986C9.4702 14.6352 9.28619 14.7535 9.13401 14.7427C9.0014 14.7332 8.87944 14.6666 8.79976 14.5602C8.70833 14.438 8.70833 14.2193 8.70833 13.7818V8.21822Z"
|
|
20
|
+
stroke="currentColor"
|
|
21
|
+
strokeWidth="1.8"
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
<Path
|
|
26
|
+
d="M2.75 7.15C2.75 5.60986 2.75 4.83978 3.04973 4.25153C3.31338 3.73408 3.73408 3.31338 4.25153 3.04973C4.83978 2.75 5.60986 2.75 7.15 2.75H14.85C16.3901 2.75 17.1602 2.75 17.7485 3.04973C18.2659 3.31338 18.6866 3.73408 18.9503 4.25153C19.25 4.83978 19.25 5.60986 19.25 7.15V14.85C19.25 16.3901 19.25 17.1602 18.9503 17.7485C18.6866 18.2659 18.2659 18.6866 17.7485 18.9503C17.1602 19.25 16.3901 19.25 14.85 19.25H7.15C5.60986 19.25 4.83978 19.25 4.25153 18.9503C3.73408 18.6866 3.31338 18.2659 3.04973 17.7485C2.75 17.1602 2.75 16.3901 2.75 14.85V7.15Z"
|
|
27
|
+
stroke="currentColor"
|
|
28
|
+
strokeWidth="1.8"
|
|
29
|
+
strokeLinecap="round"
|
|
30
|
+
strokeLinejoin="round"
|
|
31
|
+
/>
|
|
32
|
+
</Svg>
|
|
33
|
+
);
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
PlaySquareIcon.displayName = "PlaySquareIcon";
|
|
37
|
+
|
|
38
|
+
export default PlaySquareIcon;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
|
|
5
|
+
type PlaySquareIconProps = React.SVGProps<SVGSVGElement> & {
|
|
6
|
+
size?: number | string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export const PlaySquareIcon = React.forwardRef<
|
|
10
|
+
SVGSVGElement,
|
|
11
|
+
PlaySquareIconProps
|
|
12
|
+
>(({ className, size, ...props }, ref) => {
|
|
13
|
+
const dimension = size ?? 22;
|
|
14
|
+
|
|
15
|
+
return (
|
|
16
|
+
<svg
|
|
17
|
+
ref={ref}
|
|
18
|
+
width={dimension}
|
|
19
|
+
height={dimension}
|
|
20
|
+
viewBox="0 0 22 22"
|
|
21
|
+
fill="none"
|
|
22
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
23
|
+
className={className}
|
|
24
|
+
aria-hidden={props["aria-label"] ? undefined : true}
|
|
25
|
+
role={props["aria-label"] ? "img" : "presentation"}
|
|
26
|
+
focusable="false"
|
|
27
|
+
{...props}
|
|
28
|
+
>
|
|
29
|
+
<path
|
|
30
|
+
d="M8.70833 8.21822C8.70833 7.78071 8.70833 7.56195 8.79976 7.43983C8.87944 7.3334 9.0014 7.26682 9.13401 7.25734C9.28619 7.24648 9.4702 7.36477 9.83822 7.60136L14.1654 10.3831C14.4848 10.5884 14.6445 10.6911 14.6996 10.8216C14.7478 10.9357 14.7478 11.0643 14.6996 11.1784C14.6445 11.3089 14.4848 11.4116 14.1654 11.6169L9.83822 14.3986C9.4702 14.6352 9.28619 14.7535 9.13401 14.7427C9.0014 14.7332 8.87944 14.6666 8.79976 14.5602C8.70833 14.438 8.70833 14.2193 8.70833 13.7818V8.21822Z"
|
|
31
|
+
stroke="currentColor"
|
|
32
|
+
strokeWidth="1.8"
|
|
33
|
+
strokeLinecap="round"
|
|
34
|
+
strokeLinejoin="round"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
d="M2.75 7.15C2.75 5.60986 2.75 4.83978 3.04973 4.25153C3.31338 3.73408 3.73408 3.31338 4.25153 3.04973C4.83978 2.75 5.60986 2.75 7.15 2.75H14.85C16.3901 2.75 17.1602 2.75 17.7485 3.04973C18.2659 3.31338 18.6866 3.73408 18.9503 4.25153C19.25 4.83978 19.25 5.60986 19.25 7.15V14.85C19.25 16.3901 19.25 17.1602 18.9503 17.7485C18.6866 18.2659 18.2659 18.6866 17.7485 18.9503C17.1602 19.25 16.3901 19.25 14.85 19.25H7.15C5.60986 19.25 4.83978 19.25 4.25153 18.9503C3.73408 18.6866 3.31338 18.2659 3.04973 17.7485C2.75 17.1602 2.75 16.3901 2.75 14.85V7.15Z"
|
|
38
|
+
stroke="currentColor"
|
|
39
|
+
strokeWidth="1.8"
|
|
40
|
+
strokeLinecap="round"
|
|
41
|
+
strokeLinejoin="round"
|
|
42
|
+
/>
|
|
43
|
+
</svg>
|
|
44
|
+
);
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
PlaySquareIcon.displayName = "PlaySquareIcon";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type PreviousTrackIconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
color?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const PreviousTrackIcon = ({ size = 15, color = '#000000' }: PreviousTrackIconProps) => {
|
|
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="M12.2618 0.323757C13.3995 -0.485909 15 0.31311 15 1.72293V13.2775C15 14.6874 13.3995 15.4864 12.2618 14.6768L4.14405 8.89941C3.17961 8.21304 3.17961 6.78744 4.14405 6.10107L12.2618 0.323757ZM2.30771 1.15407C2.30771 0.516809 1.79111 0.000211111 1.15386 0.000211111C0.516598 0.000211111 0 0.516809 0 1.15407V13.8465C0 14.4837 0.516598 15.0003 1.15386 15.0003C1.79111 15.0003 2.30771 14.4837 2.30771 13.8465V1.15407Z"
|
|
21
|
+
fill={color}
|
|
22
|
+
/>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
PreviousTrackIcon.displayName = "PreviousTrackIcon";
|
|
28
|
+
|
|
29
|
+
export { PreviousTrackIcon };
|
|
30
|
+
export default PreviousTrackIcon;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type PreviousTrackIconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
color?: string;
|
|
6
|
+
label?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const PreviousTrackIcon = React.forwardRef<
|
|
10
|
+
SVGSVGElement,
|
|
11
|
+
PreviousTrackIconProps
|
|
12
|
+
>(({ size = 15, color = "currentColor", label, className, ...props }, ref) => {
|
|
13
|
+
const accessibility = label
|
|
14
|
+
? { role: "img", "aria-label": label }
|
|
15
|
+
: { "aria-hidden": true };
|
|
16
|
+
|
|
17
|
+
return (
|
|
18
|
+
<svg
|
|
19
|
+
ref={ref}
|
|
20
|
+
width={size}
|
|
21
|
+
height={size}
|
|
22
|
+
viewBox="0 0 15 15"
|
|
23
|
+
fill="none"
|
|
24
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
25
|
+
className={className}
|
|
26
|
+
{...accessibility}
|
|
27
|
+
{...props}
|
|
28
|
+
>
|
|
29
|
+
<path
|
|
30
|
+
fillRule="evenodd"
|
|
31
|
+
clipRule="evenodd"
|
|
32
|
+
d="M12.2618 0.323757C13.3995 -0.485909 15 0.31311 15 1.72293V13.2775C15 14.6874 13.3995 15.4864 12.2618 14.6768L4.14405 8.89941C3.17961 8.21304 3.17961 6.78744 4.14405 6.10107L12.2618 0.323757ZM2.30771 1.15407C2.30771 0.516809 1.79111 0.000211111 1.15386 0.000211111C0.516598 0.000211111 0 0.516809 0 1.15407V13.8465C0 14.4837 0.516598 15.0003 1.15386 15.0003C1.79111 15.0003 2.30771 14.4837 2.30771 13.8465V1.15407Z"
|
|
33
|
+
fill={color}
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
);
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
PreviousTrackIcon.displayName = "PreviousTrackIcon";
|
|
40
|
+
export default PreviousTrackIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type IconProps = {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export const Repeat01Icon: React.FC<IconProps> = ({
|
|
10
|
+
size = 18,
|
|
11
|
+
color = '#000000',
|
|
12
|
+
}) => (
|
|
13
|
+
<Svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 18 18"
|
|
17
|
+
fill="none"
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
d="M12.75 1.5L15.75 4.5M15.75 4.5L12.75 7.5M15.75 4.5H5.85C4.58988 4.5 3.95982 4.5 3.47852 4.74524C3.05516 4.96095 2.71095 5.30516 2.49524 5.72852C2.25 6.20982 2.25 6.83988 2.25 8.1V8.25M2.25 13.5H12.15C13.4101 13.5 14.0402 13.5 14.5215 13.2548C14.9448 13.039 15.289 12.6948 15.5048 12.2715C15.75 11.7902 15.75 11.1601 15.75 9.9V9.75M2.25 13.5L5.25 16.5M2.25 13.5L5.25 10.5"
|
|
21
|
+
stroke={color}
|
|
22
|
+
strokeWidth="1.25"
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</Svg>
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
export default Repeat01Icon;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
type IconProps = {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export const Repeat01Icon: React.FC<IconProps> = ({
|
|
10
|
+
size = 18,
|
|
11
|
+
color = "currentColor",
|
|
12
|
+
className,
|
|
13
|
+
}) => (
|
|
14
|
+
<svg
|
|
15
|
+
width={size}
|
|
16
|
+
height={size}
|
|
17
|
+
viewBox="0 0 18 18"
|
|
18
|
+
fill="none"
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
className={className}
|
|
21
|
+
role="img"
|
|
22
|
+
aria-hidden="true"
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
d="M12.75 1.5L15.75 4.5M15.75 4.5L12.75 7.5M15.75 4.5H5.85C4.58988 4.5 3.95982 4.5 3.47852 4.74524C3.05516 4.96095 2.71095 5.30516 2.49524 5.72852C2.25 6.20982 2.25 6.83988 2.25 8.1V8.25M2.25 13.5H12.15C13.4101 13.5 14.0402 13.5 14.5215 13.2548C14.9448 13.039 15.289 12.6948 15.5048 12.2715C15.75 11.7902 15.75 11.1601 15.75 9.9V9.75M2.25 13.5L5.25 16.5M2.25 13.5L5.25 10.5"
|
|
26
|
+
stroke={color}
|
|
27
|
+
strokeWidth="1.25"
|
|
28
|
+
strokeLinecap="round"
|
|
29
|
+
strokeLinejoin="round"
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface Repeat02IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const Repeat02Icon: React.FC<Repeat02IconProps> = ({
|
|
9
|
+
size = 18,
|
|
10
|
+
}) => (
|
|
11
|
+
<Svg
|
|
12
|
+
width={size}
|
|
13
|
+
height={size}
|
|
14
|
+
viewBox="0 0 18 18"
|
|
15
|
+
fill="none"
|
|
16
|
+
>
|
|
17
|
+
<Path
|
|
18
|
+
d="M8.25 1.5L10.5 3.75M10.5 3.75L8.25 6M10.5 3.75H5.1C3.83988 3.75 3.20982 3.75 2.72852 3.99524C2.30516 4.21095 1.96095 4.55516 1.74524 4.97852C1.5 5.45982 1.5 6.08988 1.5 7.35V11.625C1.5 11.9733 1.5 12.1475 1.51925 12.2937C1.65217 13.3033 2.44667 14.0978 3.45632 14.2308C3.60253 14.25 3.77668 14.25 4.125 14.25M7.5 14.25H12.9C14.1601 14.25 14.7902 14.25 15.2715 14.0048C15.6948 13.789 16.039 13.4448 16.2548 13.0215C16.5 12.5402 16.5 11.9101 16.5 10.65V6.375C16.5 6.02668 16.5 5.85253 16.4808 5.70632C16.3478 4.69667 15.5533 3.90217 14.5437 3.76925C14.3975 3.75 14.2233 3.75 13.875 3.75M7.5 14.25L9.75 16.5M7.5 14.25L9.75 12"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
strokeWidth={1.5}
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
export { Repeat02Icon };
|
|
28
|
+
export default Repeat02Icon;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
interface Repeat02IconProps extends SVGProps<SVGSVGElement> {
|
|
5
|
+
/** Tailwind or custom classes to style the icon */
|
|
6
|
+
className?: string;
|
|
7
|
+
size?: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const Repeat02Icon: React.FC<Repeat02IconProps> = ({
|
|
11
|
+
className = "text-gray-900",
|
|
12
|
+
size = 18,
|
|
13
|
+
...props
|
|
14
|
+
}) => (
|
|
15
|
+
<svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 18 18"
|
|
19
|
+
fill="none"
|
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
className={className}
|
|
22
|
+
{...props}
|
|
23
|
+
>
|
|
24
|
+
<path
|
|
25
|
+
d="M8.25 1.5L10.5 3.75M10.5 3.75L8.25 6M10.5 3.75H5.1C3.83988 3.75 3.20982 3.75 2.72852 3.99524C2.30516 4.21095 1.96095 4.55516 1.74524 4.97852C1.5 5.45982 1.5 6.08988 1.5 7.35V11.625C1.5 11.9733 1.5 12.1475 1.51925 12.2937C1.65217 13.3033 2.44667 14.0978 3.45632 14.2308C3.60253 14.25 3.77668 14.25 4.125 14.25M7.5 14.25H12.9C14.1601 14.25 14.7902 14.25 15.2715 14.0048C15.6948 13.789 16.039 13.4448 16.2548 13.0215C16.5 12.5402 16.5 11.9101 16.5 10.65V6.375C16.5 6.02668 16.5 5.85253 16.4808 5.70632C16.3478 4.69667 15.5533 3.90217 14.5437 3.76925C14.3975 3.75 14.2233 3.75 13.875 3.75M7.5 14.25L9.75 16.5M7.5 14.25L9.75 12"
|
|
26
|
+
stroke="currentColor"
|
|
27
|
+
strokeWidth={1.5}
|
|
28
|
+
strokeLinecap="round"
|
|
29
|
+
strokeLinejoin="round"
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
export default Repeat02Icon;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface Repeat03IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const Repeat03Icon: React.FC<Repeat03IconProps> = ({
|
|
10
|
+
color = '#000000',
|
|
11
|
+
size = 18,
|
|
12
|
+
}) => (
|
|
13
|
+
<Svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 18 18"
|
|
17
|
+
fill="none"
|
|
18
|
+
>
|
|
19
|
+
<G clipPath="url(#clip0_repeat03icon)">
|
|
20
|
+
<Path
|
|
21
|
+
d="M9.75 16.5L7.5 14.25M7.5 14.25L9.75 12M7.5 14.25H11.25C14.1495 14.25 16.5 11.8995 16.5 9C16.5 6.9057 15.2737 5.09782 13.5 4.25522M4.5 13.7448C2.72629 12.9022 1.5 11.0943 1.5 9C1.5 6.10051 3.85051 3.75 6.75 3.75H10.5M10.5 3.75L8.25 1.5M10.5 3.75L8.25 6"
|
|
22
|
+
stroke={color}
|
|
23
|
+
strokeWidth={1.5}
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
</G>
|
|
28
|
+
<Defs>
|
|
29
|
+
<ClipPath id="clip0_repeat03icon">
|
|
30
|
+
<Rect width="18" height="18" fill={color} />
|
|
31
|
+
</ClipPath>
|
|
32
|
+
</Defs>
|
|
33
|
+
</Svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export { Repeat03Icon };
|
|
37
|
+
export default Repeat03Icon;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
interface Repeat03IconProps extends SVGProps<SVGSVGElement> {
|
|
5
|
+
className?: string;
|
|
6
|
+
size?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const Repeat03Icon: React.FC<Repeat03IconProps> = ({
|
|
10
|
+
className,
|
|
11
|
+
color = "currentColor",
|
|
12
|
+
size = 18,
|
|
13
|
+
...props
|
|
14
|
+
}) => (
|
|
15
|
+
<svg
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
viewBox="0 0 18 18"
|
|
19
|
+
fill="none"
|
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
|
+
className={className}
|
|
22
|
+
{...props}
|
|
23
|
+
>
|
|
24
|
+
<g clipPath="url(#clip0_repeat03icon)">
|
|
25
|
+
<path
|
|
26
|
+
d="M9.75 16.5L7.5 14.25M7.5 14.25L9.75 12M7.5 14.25H11.25C14.1495 14.25 16.5 11.8995 16.5 9C16.5 6.9057 15.2737 5.09782 13.5 4.25522M4.5 13.7448C2.72629 12.9022 1.5 11.0943 1.5 9C1.5 6.10051 3.85051 3.75 6.75 3.75H10.5M10.5 3.75L8.25 1.5M10.5 3.75L8.25 6"
|
|
27
|
+
stroke={color}
|
|
28
|
+
strokeWidth={1.5}
|
|
29
|
+
strokeLinecap="round"
|
|
30
|
+
strokeLinejoin="round"
|
|
31
|
+
/>
|
|
32
|
+
</g>
|
|
33
|
+
<defs>
|
|
34
|
+
<clipPath id="clip0_repeat03icon">
|
|
35
|
+
<rect width="18" height="18" fill={color} />
|
|
36
|
+
</clipPath>
|
|
37
|
+
</defs>
|
|
38
|
+
</svg>
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
export default Repeat03Icon;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
type Shuffle01IconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const Shuffle01Icon = ({
|
|
10
|
+
size = 16,
|
|
11
|
+
strokeWidth = 1.25,
|
|
12
|
+
}: Shuffle01IconProps) => {
|
|
13
|
+
return (
|
|
14
|
+
<Svg
|
|
15
|
+
viewBox="0 0 16 16"
|
|
16
|
+
width={size}
|
|
17
|
+
height={size}
|
|
18
|
+
fill="none"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
strokeWidth={strokeWidth}
|
|
21
|
+
>
|
|
22
|
+
<Path
|
|
23
|
+
d="M12 10L14 12M14 12L12 14M14 12H12.3793C11.7531 12 11.44 12 11.1559 11.9137C10.9043 11.8373 10.6702 11.712 10.4671 11.5451C10.2377 11.3565 10.064 11.096 9.71669 10.575L9.55556 10.3333M12 2L14 4M14 4L12 6M14 4H12.3793C11.7531 4 11.44 4 11.1559 4.0863C10.9043 4.1627 10.6702 4.28796 10.4671 4.45491C10.2377 4.64349 10.064 4.90398 9.71669 5.42496L6.28331 10.575C5.93599 11.096 5.76232 11.3565 5.53288 11.5451C5.32976 11.712 5.09572 11.8373 4.84414 11.9137C4.55996 12 4.24689 12 3.62075 12H2M2 4H3.62075C4.24689 4 4.55996 4 4.84414 4.0863C5.09572 4.1627 5.32976 4.28796 5.53288 4.45491C5.76232 4.64349 5.93599 4.90398 6.28331 5.42496L6.44444 5.66667"
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
Shuffle01Icon.displayName = "Shuffle01Icon";
|
|
32
|
+
|
|
33
|
+
export { Shuffle01Icon };
|
|
34
|
+
export default Shuffle01Icon;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
// components/icons/shuffle-01-icon.tsx
|
|
2
|
+
"use client";
|
|
3
|
+
|
|
4
|
+
import React, { forwardRef } from "react";
|
|
5
|
+
import { cn } from "../../utils/cn";
|
|
6
|
+
|
|
7
|
+
type Shuffle01IconProps = Omit<
|
|
8
|
+
React.SVGProps<SVGSVGElement>,
|
|
9
|
+
"width" | "height"
|
|
10
|
+
> & {
|
|
11
|
+
size?: number | string;
|
|
12
|
+
strokeWidth?: number;
|
|
13
|
+
label?: string; // Accessible name. If omitted, icon is aria-hidden.
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
const Shuffle01Icon = forwardRef<SVGSVGElement, Shuffle01IconProps>(
|
|
17
|
+
(
|
|
18
|
+
{
|
|
19
|
+
size = 16,
|
|
20
|
+
strokeWidth = 1.25,
|
|
21
|
+
className,
|
|
22
|
+
label,
|
|
23
|
+
onClick,
|
|
24
|
+
onKeyDown,
|
|
25
|
+
...rest
|
|
26
|
+
},
|
|
27
|
+
ref,
|
|
28
|
+
) => {
|
|
29
|
+
const isInteractive = Boolean(onClick);
|
|
30
|
+
const ariaProps = label
|
|
31
|
+
? { role: "img", "aria-label": label }
|
|
32
|
+
: { "aria-hidden": true as const };
|
|
33
|
+
|
|
34
|
+
const handleKeyDown = (e: React.KeyboardEvent<SVGSVGElement>) => {
|
|
35
|
+
if (!isInteractive) return;
|
|
36
|
+
if (e.key === "Enter" || e.key === " ") {
|
|
37
|
+
e.preventDefault();
|
|
38
|
+
onClick?.(e as unknown as React.MouseEvent<SVGSVGElement, MouseEvent>);
|
|
39
|
+
}
|
|
40
|
+
onKeyDown?.(e);
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
return (
|
|
44
|
+
<svg
|
|
45
|
+
ref={ref}
|
|
46
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
47
|
+
viewBox="0 0 16 16"
|
|
48
|
+
width={size}
|
|
49
|
+
height={size}
|
|
50
|
+
fill="none"
|
|
51
|
+
stroke="currentColor"
|
|
52
|
+
strokeWidth={strokeWidth}
|
|
53
|
+
className={cn(
|
|
54
|
+
isInteractive && "cursor-pointer outline-none",
|
|
55
|
+
className,
|
|
56
|
+
)}
|
|
57
|
+
tabIndex={isInteractive ? 0 : undefined}
|
|
58
|
+
onKeyDown={handleKeyDown}
|
|
59
|
+
{...ariaProps}
|
|
60
|
+
{...rest}
|
|
61
|
+
>
|
|
62
|
+
<path
|
|
63
|
+
d="M12 10L14 12M14 12L12 14M14 12H12.3793C11.7531 12 11.44 12 11.1559 11.9137C10.9043 11.8373 10.6702 11.712 10.4671 11.5451C10.2377 11.3565 10.064 11.096 9.71669 10.575L9.55556 10.3333M12 2L14 4M14 4L12 6M14 4H12.3793C11.7531 4 11.44 4 11.1559 4.0863C10.9043 4.1627 10.6702 4.28796 10.4671 4.45491C10.2377 4.64349 10.064 4.90398 9.71669 5.42496L6.28331 10.575C5.93599 11.096 5.76232 11.3565 5.53288 11.5451C5.32976 11.712 5.09572 11.8373 4.84414 11.9137C4.55996 12 4.24689 12 3.62075 12H2M2 4H3.62075C4.24689 4 4.55996 4 4.84414 4.0863C5.09572 4.1627 5.32976 4.28796 5.53288 4.45491C5.76232 4.64349 5.93599 4.90398 6.28331 5.42496L6.44444 5.66667"
|
|
64
|
+
strokeLinecap="round"
|
|
65
|
+
strokeLinejoin="round"
|
|
66
|
+
/>
|
|
67
|
+
</svg>
|
|
68
|
+
);
|
|
69
|
+
},
|
|
70
|
+
);
|
|
71
|
+
|
|
72
|
+
Shuffle01Icon.displayName = "Shuffle01Icon";
|
|
73
|
+
|
|
74
|
+
export default Shuffle01Icon;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 TenSecondsForwardIcon = ({ 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="M16.411 6.13286C16.2026 5.85786 15.811 5.79952 15.536 6.00786C15.261 6.21619 15.2026 6.60786 15.411 6.88286C16.311 8.08286 16.786 9.48286 16.786 10.9329C16.786 14.6745 13.7443 17.7162 10.0026 17.7162C6.26094 17.7162 3.21927 14.6745 3.21927 10.9329C3.21927 7.19119 6.26094 4.15786 10.0026 4.15786C10.486 4.15786 10.9776 4.21619 11.511 4.34119C11.536 4.34952 11.561 4.34119 11.5943 4.34119C11.611 4.34119 11.636 4.35786 11.6526 4.35786C11.6776 4.35786 11.6943 4.34952 11.7193 4.34952C11.7526 4.34952 11.7776 4.34119 11.8026 4.33286C11.8443 4.32452 11.886 4.30786 11.9276 4.28286C11.9526 4.26619 11.986 4.25786 12.011 4.24119C12.0193 4.23286 12.036 4.23286 12.0443 4.22452C12.0693 4.20786 12.0776 4.18286 12.0943 4.16619C12.1276 4.13286 12.1526 4.10786 12.1776 4.06619C12.2026 4.03286 12.211 3.99119 12.2276 3.95786C12.236 3.93286 12.2526 3.90786 12.261 3.88286C12.261 3.86619 12.261 3.85786 12.261 3.84119C12.2693 3.79952 12.2693 3.75786 12.261 3.71619C12.261 3.67452 12.261 3.64119 12.2526 3.59952C12.2443 3.56619 12.2276 3.53286 12.211 3.49119C12.1943 3.44952 12.1776 3.40786 12.1526 3.37452C12.1443 3.35786 12.1443 3.34952 12.136 3.34119L10.486 1.28286C10.2693 1.01619 9.87764 0.974524 9.61097 1.18286C9.3443 1.39952 9.30264 1.79119 9.51097 2.05786L10.1943 2.90786C10.1276 2.90786 10.061 2.89952 9.9943 2.89952C5.56927 2.89952 1.96094 6.49952 1.96094 10.9329C1.96094 15.3662 5.56094 18.9662 9.9943 18.9662C14.4276 18.9662 18.0276 15.3662 18.0276 10.9329C18.036 9.20786 17.4693 7.54952 16.411 6.13286Z"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
<Path
|
|
20
|
+
d="M7.9519 13.9021C7.61024 13.9021 7.3269 13.6188 7.3269 13.2771V10.4521L7.16857 10.6354C6.93524 10.8938 6.54357 10.9104 6.28524 10.6854C6.0269 10.4521 6.01024 10.0604 6.23524 9.8021L7.48524 8.41043C7.66024 8.21878 7.93524 8.15211 8.1769 8.24378C8.41857 8.33544 8.5769 8.56877 8.5769 8.8271V13.2854C8.5769 13.6271 8.3019 13.9021 7.9519 13.9021Z"
|
|
21
|
+
fill="currentColor"
|
|
22
|
+
/>
|
|
23
|
+
<Path
|
|
24
|
+
d="M11.6667 13.8997C10.4 13.8997 9.375 12.8747 9.375 11.6081V10.4831C9.375 9.2164 10.4 8.19141 11.6667 8.19141C12.9333 8.19141 13.9583 9.2164 13.9583 10.4831V11.6081C13.9583 12.8747 12.9333 13.8997 11.6667 13.8997ZM11.6667 9.44973C11.0917 9.44973 10.625 9.9164 10.625 10.4914V11.6164C10.625 12.1914 11.0917 12.6581 11.6667 12.6581C12.2417 12.6581 12.7083 12.1914 12.7083 11.6164V10.4914C12.7083 9.9164 12.2417 9.44973 11.6667 9.44973Z"
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
/>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
TenSecondsForwardIcon.displayName = "TenSecondsForwardIcon";
|
|
31
|
+
|
|
32
|
+
export { TenSecondsForwardIcon };
|
|
33
|
+
export default TenSecondsForwardIcon;
|
|
@@ -0,0 +1,37 @@
|
|
|
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 TenSecondsForwardIcon = 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="M16.411 6.13286C16.2026 5.85786 15.811 5.79952 15.536 6.00786C15.261 6.21619 15.2026 6.60786 15.411 6.88286C16.311 8.08286 16.786 9.48286 16.786 10.9329C16.786 14.6745 13.7443 17.7162 10.0026 17.7162C6.26094 17.7162 3.21927 14.6745 3.21927 10.9329C3.21927 7.19119 6.26094 4.15786 10.0026 4.15786C10.486 4.15786 10.9776 4.21619 11.511 4.34119C11.536 4.34952 11.561 4.34119 11.5943 4.34119C11.611 4.34119 11.636 4.35786 11.6526 4.35786C11.6776 4.35786 11.6943 4.34952 11.7193 4.34952C11.7526 4.34952 11.7776 4.34119 11.8026 4.33286C11.8443 4.32452 11.886 4.30786 11.9276 4.28286C11.9526 4.26619 11.986 4.25786 12.011 4.24119C12.0193 4.23286 12.036 4.23286 12.0443 4.22452C12.0693 4.20786 12.0776 4.18286 12.0943 4.16619C12.1276 4.13286 12.1526 4.10786 12.1776 4.06619C12.2026 4.03286 12.211 3.99119 12.2276 3.95786C12.236 3.93286 12.2526 3.90786 12.261 3.88286C12.261 3.86619 12.261 3.85786 12.261 3.84119C12.2693 3.79952 12.2693 3.75786 12.261 3.71619C12.261 3.67452 12.261 3.64119 12.2526 3.59952C12.2443 3.56619 12.2276 3.53286 12.211 3.49119C12.1943 3.44952 12.1776 3.40786 12.1526 3.37452C12.1443 3.35786 12.1443 3.34952 12.136 3.34119L10.486 1.28286C10.2693 1.01619 9.87764 0.974524 9.61097 1.18286C9.3443 1.39952 9.30264 1.79119 9.51097 2.05786L10.1943 2.90786C10.1276 2.90786 10.061 2.89952 9.9943 2.89952C5.56927 2.89952 1.96094 6.49952 1.96094 10.9329C1.96094 15.3662 5.56094 18.9662 9.9943 18.9662C14.4276 18.9662 18.0276 15.3662 18.0276 10.9329C18.036 9.20786 17.4693 7.54952 16.411 6.13286Z"
|
|
21
|
+
fill="currentColor"
|
|
22
|
+
/>
|
|
23
|
+
<path
|
|
24
|
+
d="M7.9519 13.9021C7.61024 13.9021 7.3269 13.6188 7.3269 13.2771V10.4521L7.16857 10.6354C6.93524 10.8938 6.54357 10.9104 6.28524 10.6854C6.0269 10.4521 6.01024 10.0604 6.23524 9.8021L7.48524 8.41043C7.66024 8.21878 7.93524 8.15211 8.1769 8.24378C8.41857 8.33544 8.5769 8.56877 8.5769 8.8271V13.2854C8.5769 13.6271 8.3019 13.9021 7.9519 13.9021Z"
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
d="M11.6667 13.8997C10.4 13.8997 9.375 12.8747 9.375 11.6081V10.4831C9.375 9.2164 10.4 8.19141 11.6667 8.19141C12.9333 8.19141 13.9583 9.2164 13.9583 10.4831V11.6081C13.9583 12.8747 12.9333 13.8997 11.6667 13.8997ZM11.6667 9.44973C11.0917 9.44973 10.625 9.9164 10.625 10.4914V11.6164C10.625 12.1914 11.0917 12.6581 11.6667 12.6581C12.2417 12.6581 12.7083 12.1914 12.7083 11.6164V10.4914C12.7083 9.9164 12.2417 9.44973 11.6667 9.44973Z"
|
|
29
|
+
fill="currentColor"
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
)
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
TenSecondsForwardIcon.displayName = "TenSecondsForwardIcon";
|
|
36
|
+
|
|
37
|
+
export default TenSecondsForwardIcon;
|
|
@@ -0,0 +1,37 @@
|
|
|
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 VideoRecorderIcon: React.FC<IconProps> = ({
|
|
10
|
+
size = 24,
|
|
11
|
+
color = '#000000',
|
|
12
|
+
}) => (
|
|
13
|
+
<Svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 24 24"
|
|
17
|
+
fill="none"
|
|
18
|
+
>
|
|
19
|
+
<Path
|
|
20
|
+
d="M22 8.93137C22 8.32555 22 8.02265 21.8802 7.88238C21.7763 7.76068 21.6203 7.69609 21.4608 7.70865C21.2769 7.72312 21.0627 7.93731 20.6343 8.36569L17 12L20.6343 15.6343C21.0627 16.0627 21.2769 16.2769 21.4608 16.2914C21.6203 16.3039 21.7763 16.2393 21.8802 16.1176C22 15.9774 22 15.6744 22 15.0686V8.93137Z"
|
|
21
|
+
stroke={color}
|
|
22
|
+
strokeWidth="2"
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
<Path
|
|
27
|
+
d="M2 9.8C2 8.11984 2 7.27976 2.32698 6.63803C2.6146 6.07354 3.07354 5.6146 3.63803 5.32698C4.27976 5 5.11984 5 6.8 5H12.2C13.8802 5 14.7202 5 15.362 5.32698C15.9265 5.6146 16.3854 6.07354 16.673 6.63803C17 7.27976 17 8.11984 17 9.8V14.2C17 15.8802 17 16.7202 16.673 17.362C16.3854 17.9265 15.9265 18.3854 15.362 18.673C14.7202 19 13.8802 19 12.2 19H6.8C5.11984 19 4.27976 19 3.63803 18.673C3.07354 18.3854 2.6146 17.9265 2.32698 17.362C2 16.7202 2 15.8802 2 14.2V9.8Z"
|
|
28
|
+
stroke={color}
|
|
29
|
+
strokeWidth="2"
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
</Svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export { VideoRecorderIcon };
|
|
37
|
+
export default VideoRecorderIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const VideoRecorderIcon: React.FC<IconProps> = ({
|
|
9
|
+
size = 24,
|
|
10
|
+
color = "currentColor",
|
|
11
|
+
}) => (
|
|
12
|
+
<svg
|
|
13
|
+
width={size}
|
|
14
|
+
height={size}
|
|
15
|
+
viewBox="0 0 24 24"
|
|
16
|
+
fill="none"
|
|
17
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
d="M22 8.93137C22 8.32555 22 8.02265 21.8802 7.88238C21.7763 7.76068 21.6203 7.69609 21.4608 7.70865C21.2769 7.72312 21.0627 7.93731 20.6343 8.36569L17 12L20.6343 15.6343C21.0627 16.0627 21.2769 16.2769 21.4608 16.2914C21.6203 16.3039 21.7763 16.2393 21.8802 16.1176C22 15.9774 22 15.6744 22 15.0686V8.93137Z"
|
|
21
|
+
stroke={color}
|
|
22
|
+
strokeWidth="2"
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
<path
|
|
27
|
+
d="M2 9.8C2 8.11984 2 7.27976 2.32698 6.63803C2.6146 6.07354 3.07354 5.6146 3.63803 5.32698C4.27976 5 5.11984 5 6.8 5H12.2C13.8802 5 14.7202 5 15.362 5.32698C15.9265 5.6146 16.3854 6.07354 16.673 6.63803C17 7.27976 17 8.11984 17 9.8V14.2C17 15.8802 17 16.7202 16.673 17.362C16.3854 17.9265 15.9265 18.3854 15.362 18.673C14.7202 19 13.8802 19 12.2 19H6.8C5.11984 19 4.27976 19 3.63803 18.673C3.07354 18.3854 2.6146 17.9265 2.32698 17.362C2 16.7202 2 15.8802 2 14.2V9.8Z"
|
|
28
|
+
stroke={color}
|
|
29
|
+
strokeWidth="2"
|
|
30
|
+
strokeLinecap="round"
|
|
31
|
+
strokeLinejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
</svg>
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
export default VideoRecorderIcon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
interface VolumeIconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const VolumeIcon = ({ size = 20 }: VolumeIconProps) => (
|
|
9
|
+
<Svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 20 20"
|
|
13
|
+
fill="none"
|
|
14
|
+
>
|
|
15
|
+
<Path
|
|
16
|
+
d="M16.4579 4.16595C17.639 5.80782 18.3346 7.82232 18.3346 9.99929C18.3346 12.1763 17.639 14.1908 16.4579 15.8326M13.1224 6.66596C13.7815 7.61082 14.168 8.75991 14.168 9.99929C14.168 11.2387 13.7815 12.3878 13.1224 13.3326M8.0299 4.47069L5.39183 7.10876C5.2477 7.25289 5.17564 7.32495 5.09154 7.37649C5.01698 7.42218 4.93569 7.45585 4.85066 7.47626C4.75476 7.49929 4.65284 7.49929 4.44902 7.49929H3.0013C2.53459 7.49929 2.30124 7.49929 2.12298 7.59012C1.96617 7.67001 1.83869 7.79749 1.7588 7.9543C1.66797 8.13256 1.66797 8.36591 1.66797 8.83262V11.166C1.66797 11.6327 1.66797 11.866 1.7588 12.0443C1.83869 12.2011 1.96617 12.3286 2.12298 12.4085C2.30124 12.4993 2.53459 12.4993 3.0013 12.4993H4.44902C4.65284 12.4993 4.75476 12.4993 4.85066 12.5223C4.93569 12.5427 5.01698 12.5764 5.09154 12.6221C5.17564 12.6736 5.2477 12.7457 5.39183 12.8898L8.0299 15.5279C8.38688 15.8849 8.56537 16.0634 8.71861 16.0754C8.85158 16.0859 8.98152 16.0321 9.06814 15.9306C9.16797 15.8137 9.16797 15.5613 9.16797 15.0565V4.9421C9.16797 4.43725 9.16797 4.18483 9.06814 4.06794C8.98152 3.96652 8.85158 3.9127 8.71861 3.92316C8.56537 3.93522 8.38688 4.11371 8.0299 4.47069Z"
|
|
17
|
+
stroke="currentColor"
|
|
18
|
+
strokeWidth={1.5}
|
|
19
|
+
strokeLinecap="round"
|
|
20
|
+
strokeLinejoin="round"
|
|
21
|
+
/>
|
|
22
|
+
</Svg>
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export { VolumeIcon };
|
|
26
|
+
export default VolumeIcon;
|