@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,47 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* TiktokIcon component renders the TikTok logo as an SVG.
|
|
5
|
+
*
|
|
6
|
+
* @param {React.SVGProps<SVGSVGElement>} props - Standard SVG props, including className for Tailwind styling.
|
|
7
|
+
* @returns {JSX.Element}
|
|
8
|
+
*/
|
|
9
|
+
const TiktokIcon: React.FC<React.SVGProps<SVGSVGElement>> = ({ className, ...props }) => (
|
|
10
|
+
<svg
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
viewBox="0 0 18 18"
|
|
13
|
+
width="18"
|
|
14
|
+
height="18"
|
|
15
|
+
className={className}
|
|
16
|
+
role="img"
|
|
17
|
+
aria-label="TikTok Logo"
|
|
18
|
+
{...props}
|
|
19
|
+
>
|
|
20
|
+
<path
|
|
21
|
+
d="M0 9.00008C0 4.02951 4.02944 0 9 0C13.9706 0 18 4.02951 18 9.00008C18 13.9706 13.9706 18.0002 9 18.0002C4.02944 18.0002 0 13.9706 0 9.00008Z"
|
|
22
|
+
fill="black"
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
d="M4.16016 13.2726L4.19857 13.3831C4.19331 13.371 4.1791 13.3326 4.16016 13.2726ZM5.7183 10.7541C5.78775 10.1563 6.02298 9.8227 6.465 9.47908C7.09857 9.01548 7.88895 9.27753 7.88895 9.27753V7.7194C8.08102 7.71466 8.2731 7.72677 8.46253 7.75518V9.76008C8.46253 9.76008 7.67268 9.49855 7.03858 9.96162C6.59656 10.3047 6.36133 10.6389 6.29187 11.2366C6.28924 11.5608 6.34713 11.986 6.61603 12.3507C6.54867 12.3149 6.48132 12.2738 6.41185 12.2281C5.82354 11.815 5.71566 11.1935 5.7183 10.7541ZM11.7298 4.83834C11.2952 4.34158 11.1294 3.83694 11.0694 3.48438H11.6167C11.6167 3.48438 11.5088 4.41105 12.3034 5.32089L12.3155 5.33298C12.0998 5.19354 11.903 5.02567 11.7298 4.83834ZM14.3683 6.25018V8.21404C14.3683 8.21404 13.6695 8.18511 13.1512 8.04828C12.4287 7.85622 11.9651 7.561 11.9651 7.561C11.9651 7.561 11.6435 7.34998 11.6193 7.33525V11.3929C11.6193 11.6187 11.5593 12.1828 11.3794 12.6532C11.1442 13.2679 10.779 13.6736 10.7121 13.7551C10.7121 13.7551 10.268 14.3024 9.48762 14.6697C8.78406 15.0012 8.16469 14.9939 7.97998 15.0012C7.97998 15.0012 6.91176 15.0444 5.94877 14.394C5.73987 14.2498 5.54569 14.0867 5.36784 13.9067L5.37256 13.9114C6.33555 14.5645 7.40377 14.5187 7.40377 14.5187C7.58848 14.5113 8.20785 14.5187 8.91141 14.1872C9.69178 13.8199 10.1359 13.2726 10.1359 13.2726C10.2033 13.191 10.5679 12.7853 10.8032 12.1707C10.9831 11.7003 11.0431 11.1361 11.0431 10.9104V6.85534C11.0694 6.86955 11.3889 7.08109 11.3889 7.08109C11.3889 7.08109 11.8524 7.37629 12.5749 7.56837C13.0933 7.70518 13.7921 7.73413 13.7921 7.73413V6.19494C14.0326 6.25018 14.2362 6.26439 14.3683 6.25018Z"
|
|
26
|
+
fill="#EE1D52"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M13.7924 6.1923V7.73149C13.7924 7.73149 13.0936 7.70256 12.5753 7.56574C11.8528 7.37367 11.3892 7.07845 11.3892 7.07845C11.3892 7.07845 11.0676 6.86745 11.0434 6.85272V10.9104C11.0434 11.1361 10.9834 11.7003 10.8035 12.1707C10.5683 12.7853 10.2031 13.191 10.1362 13.2726C10.1362 13.2726 9.69209 13.8199 8.91172 14.1872C8.20816 14.5187 7.58879 14.5113 7.40408 14.5187C7.40408 14.5187 6.33586 14.5618 5.37287 13.9114L5.36815 13.9067C5.26711 13.8036 5.17133 13.6952 5.0824 13.5825C4.77509 13.191 4.58776 12.7301 4.53986 12.598V12.5954C4.46305 12.3675 4.30465 11.815 4.32622 11.2845C4.36463 10.3458 4.68142 9.76744 4.76561 9.62326C4.98664 9.22965 5.27711 8.87655 5.61809 8.58135C5.92067 8.32665 6.26377 8.12301 6.63107 7.98093C7.02941 7.81306 7.4567 7.72413 7.88926 7.71676V9.2749C7.88926 9.2749 7.0994 9.01338 6.46531 9.47644C6.02381 9.81954 5.78806 10.1537 5.71861 10.7515C5.71597 11.1909 5.82437 11.8129 6.41479 12.2281C6.48425 12.2738 6.55162 12.3144 6.61897 12.3507C6.72211 12.4901 6.84682 12.6122 6.99101 12.7132C7.56985 13.0947 8.0524 13.1216 8.67175 12.8743C9.08483 12.7085 9.39425 12.3365 9.53843 11.9213C9.62948 11.6618 9.62737 11.4024 9.62737 11.1335V3.48438H11.0682C11.1281 3.83746 11.2913 4.34158 11.7286 4.83834C11.9038 5.02567 12.1006 5.19354 12.3143 5.33298C12.3769 5.40244 12.701 5.7387 13.1183 5.94762C13.3314 6.05548 13.5598 6.13705 13.7924 6.1923Z"
|
|
30
|
+
fill="#FFFFFF"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M3.96875 12.1211L4.00452 12.2242C3.9998 12.2127 3.98558 12.1764 3.96875 12.1211Z"
|
|
34
|
+
fill="#69C9D0"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
d="M6.6314 7.98073C6.26147 8.12228 5.92048 8.32646 5.61842 8.58115C5.27533 8.87636 4.98695 9.23156 4.76594 9.62571C4.68175 9.76988 4.36496 10.3461 4.32655 11.287C4.30498 11.82 4.466 12.3699 4.54019 12.5978V12.6004C4.58809 12.7299 4.77542 13.1935 5.08273 13.585C5.17166 13.6976 5.26744 13.806 5.36846 13.9091C5.04169 13.6834 4.75384 13.4124 4.50652 13.1024C4.20184 12.7157 4.0145 12.2573 3.9661 12.1226V12.1179C3.88927 11.89 3.72824 11.3375 3.75245 10.8044C3.79087 9.86566 4.10764 9.28733 4.19183 9.14315C4.41286 8.74954 4.70069 8.39381 5.04431 8.09861C5.34689 7.84391 5.68999 7.64027 6.05729 7.49819C6.28778 7.40242 6.52774 7.33243 6.77296 7.28717C7.14289 7.22245 7.51966 7.21771 7.8917 7.27033V7.7171C7.45757 7.72394 7.03027 7.81234 6.6314 7.98073Z"
|
|
38
|
+
fill="#69C9D0"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
d="M11.0703 3.48255H9.62949V11.1317C9.62949 11.4006 9.62949 11.66 9.54057 11.9194C9.39428 12.3325 9.08433 12.7067 8.67389 12.8724C8.05452 13.1218 7.56935 13.0934 6.99314 12.7114C6.84894 12.613 6.72423 12.4904 6.62109 12.3515C7.11311 12.613 7.5525 12.6083 8.09768 12.3899C8.51075 12.2241 8.82017 11.8494 8.96436 11.4369C9.0554 11.1775 9.05328 10.918 9.05328 10.6491V3H11.0435C11.0419 3 11.0203 3.18943 11.0703 3.48255ZM13.793 5.76582V6.19099C13.5598 6.13575 13.332 6.05418 13.1183 5.94632C12.7032 5.74004 12.379 5.40114 12.3143 5.33169C12.3885 5.37957 12.4632 5.42272 12.5421 5.46376C13.051 5.7153 13.5483 5.79213 13.793 5.76582Z"
|
|
42
|
+
fill="#69C9D0"
|
|
43
|
+
/>
|
|
44
|
+
</svg>
|
|
45
|
+
);
|
|
46
|
+
|
|
47
|
+
export default TiktokIcon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
const YoutubeIcon: React.FC = () => (
|
|
5
|
+
<Svg
|
|
6
|
+
viewBox="0 0 18 19"
|
|
7
|
+
width="18"
|
|
8
|
+
height="19"
|
|
9
|
+
>
|
|
10
|
+
<Path
|
|
11
|
+
d="M0 9.06353C0 4.05788 4.02944 0 9 0C13.9706 0 18 4.05788 18 9.06353C18 14.0692 13.9706 18.1271 9 18.1271C4.02944 18.1271 0 14.0692 0 9.06353Z"
|
|
12
|
+
fill="#ED1D24"
|
|
13
|
+
/>
|
|
14
|
+
<Path
|
|
15
|
+
d="M15.0124 5.98278C14.8718 5.45171 14.4147 5.02686 13.8874 4.88524C12.6921 4.5666 5.48504 4.53121 4.11395 4.88524C3.58659 5.02686 3.12957 5.45171 2.98895 5.98278C2.67254 7.32815 2.63738 10.7624 2.98895 12.1432C3.12957 12.6742 3.58659 13.0991 4.11395 13.2407C5.37957 13.5947 12.5866 13.5947 13.8874 13.2407C14.4147 13.0991 14.8718 12.6742 15.0124 12.1432C15.3287 10.8686 15.3287 7.29274 15.0124 5.98278Z"
|
|
16
|
+
fill="#FFFFFF"
|
|
17
|
+
/>
|
|
18
|
+
<Path
|
|
19
|
+
d="M7.73438 7.1875V10.9404L11.0039 9.06394"
|
|
20
|
+
fill="#ED1D24"
|
|
21
|
+
/>
|
|
22
|
+
</Svg>
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export { YoutubeIcon };
|
|
26
|
+
export default YoutubeIcon;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* YouTubeIcon component renders the YouTube logo as an SVG.
|
|
5
|
+
*
|
|
6
|
+
* @param {React.SVGProps<SVGSVGElement>} props - Standard SVG props, including className for sizing and Tailwind styling.
|
|
7
|
+
* @returns {JSX.Element}
|
|
8
|
+
*/
|
|
9
|
+
const YouTubeIcon: React.FC<React.SVGProps<SVGSVGElement>> = ({ className, ...props }) => (
|
|
10
|
+
<svg
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
viewBox="0 0 18 19"
|
|
13
|
+
width="18"
|
|
14
|
+
height="19"
|
|
15
|
+
className={className}
|
|
16
|
+
role="img"
|
|
17
|
+
aria-label="YouTube Logo"
|
|
18
|
+
{...props}
|
|
19
|
+
>
|
|
20
|
+
<path
|
|
21
|
+
d="M0 9.06353C0 4.05788 4.02944 0 9 0C13.9706 0 18 4.05788 18 9.06353C18 14.0692 13.9706 18.1271 9 18.1271C4.02944 18.1271 0 14.0692 0 9.06353Z"
|
|
22
|
+
fill="#ED1D24"
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
d="M15.0124 5.98278C14.8718 5.45171 14.4147 5.02686 13.8874 4.88524C12.6921 4.5666 5.48504 4.53121 4.11395 4.88524C3.58659 5.02686 3.12957 5.45171 2.98895 5.98278C2.67254 7.32815 2.63738 10.7624 2.98895 12.1432C3.12957 12.6742 3.58659 13.0991 4.11395 13.2407C5.37957 13.5947 12.5866 13.5947 13.8874 13.2407C14.4147 13.0991 14.8718 12.6742 15.0124 12.1432C15.3287 10.8686 15.3287 7.29274 15.0124 5.98278Z"
|
|
26
|
+
fill="#FFFFFF"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M7.73438 7.1875V10.9404L11.0039 9.06394"
|
|
30
|
+
fill="#ED1D24"
|
|
31
|
+
/>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
export default YouTubeIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from "react-native-svg";
|
|
3
|
+
|
|
4
|
+
const YoutubeReelsIcon: React.FC = () => (
|
|
5
|
+
<Svg
|
|
6
|
+
viewBox="0 0 18 18"
|
|
7
|
+
width="18"
|
|
8
|
+
height="18"
|
|
9
|
+
fill="none"
|
|
10
|
+
>
|
|
11
|
+
<Path
|
|
12
|
+
d="M0 9C0 4.02944 4.02944 0 9 0C13.9706 0 18 4.02944 18 9C18 13.9706 13.9706 18 9 18C4.02944 18 0 13.9706 0 9Z"
|
|
13
|
+
fill="#FE0000"
|
|
14
|
+
/>
|
|
15
|
+
<Path
|
|
16
|
+
fillRule="evenodd"
|
|
17
|
+
clipRule="evenodd"
|
|
18
|
+
d="M10.4562 3.26453C11.5983 2.67467 13.0124 3.10437 13.6136 4.22451C14.2147 5.34465 13.7762 6.73043 12.634 7.32027L11.6949 7.80954C12.504 7.83885 13.2756 8.27928 13.6796 9.03224C14.2807 10.1524 13.8432 11.5381 12.7001 12.128L7.69203 14.7355C6.5499 15.3254 5.13578 14.8956 4.53466 13.7755C3.93353 12.6554 4.37206 11.2696 5.51421 10.6797L6.45333 10.1905C5.64427 10.1612 4.87267 9.72072 4.46864 8.96778C3.86752 7.84764 4.30604 6.46187 5.44818 5.87201L10.4562 3.26453ZM7.75313 7.15328L10.7844 9.00782L7.75313 10.8536V7.15328Z"
|
|
19
|
+
fill="#FFFFFF"
|
|
20
|
+
/>
|
|
21
|
+
</Svg>
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
export { YoutubeReelsIcon };
|
|
25
|
+
export default YoutubeReelsIcon;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* YoutubeReelsIcon component renders the YouTube Reels (Shorts) logo as an SVG.
|
|
5
|
+
*
|
|
6
|
+
* @param {React.SVGProps<SVGSVGElement>} props - Standard SVG props, including className for Tailwind styling.
|
|
7
|
+
* @returns {JSX.Element}
|
|
8
|
+
*/
|
|
9
|
+
const YoutubeReelsIcon: React.FC<React.SVGProps<SVGSVGElement>> = ({ className, ...props }) => (
|
|
10
|
+
<svg
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
viewBox="0 0 18 18"
|
|
13
|
+
width="18"
|
|
14
|
+
height="18"
|
|
15
|
+
className={className}
|
|
16
|
+
role="img"
|
|
17
|
+
aria-label="YouTube Reels Logo"
|
|
18
|
+
fill="none"
|
|
19
|
+
{...props}
|
|
20
|
+
>
|
|
21
|
+
<path
|
|
22
|
+
d="M0 9C0 4.02944 4.02944 0 9 0C13.9706 0 18 4.02944 18 9C18 13.9706 13.9706 18 9 18C4.02944 18 0 13.9706 0 9Z"
|
|
23
|
+
fill="#FE0000"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
fillRule="evenodd"
|
|
27
|
+
clipRule="evenodd"
|
|
28
|
+
d="M10.4562 3.26453C11.5983 2.67467 13.0124 3.10437 13.6136 4.22451C14.2147 5.34465 13.7762 6.73043 12.634 7.32027L11.6949 7.80954C12.504 7.83885 13.2756 8.27928 13.6796 9.03224C14.2807 10.1524 13.8432 11.5381 12.7001 12.128L7.69203 14.7355C6.5499 15.3254 5.13578 14.8956 4.53466 13.7755C3.93353 12.6554 4.37206 11.2696 5.51421 10.6797L6.45333 10.1905C5.64427 10.1612 4.87267 9.72072 4.46864 8.96778C3.86752 7.84764 4.30604 6.46187 5.44818 5.87201L10.4562 3.26453ZM7.75313 7.15328L10.7844 9.00782L7.75313 10.8536V7.15328Z"
|
|
29
|
+
fill="#FFFFFF"
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
export default YoutubeReelsIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { default as AppleMusicIcon } from './AppleMusicIcon';
|
|
2
|
+
export { default as AudiomackIcon } from './AudiomackIcon';
|
|
3
|
+
export { default as InstagramShortsIcon } from './InstagramShortsIcon';
|
|
4
|
+
export { default as ShazamIcon } from './ShazamIcon';
|
|
5
|
+
export { default as SoundCloudIcon } from './SoundCloudIcon';
|
|
6
|
+
export { default as SpotifyIcon } from './SpotifyIcon';
|
|
7
|
+
export { default as TiktokIcon } from './TiktokIcon';
|
|
8
|
+
export { default as YoutubeIcon } from './YoutubeIcon';
|
|
9
|
+
export { default as YoutubeReelsIcon } from './YoutubeReelsIcon';
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface CalendarIconProps {
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
stroke?: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const CalendarIcon = ({
|
|
11
|
+
width = 18,
|
|
12
|
+
height = 18,
|
|
13
|
+
stroke = '#000000',
|
|
14
|
+
}: CalendarIconProps) => {
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
width={width}
|
|
18
|
+
height={height}
|
|
19
|
+
viewBox="0 0 18 18"
|
|
20
|
+
fill="none"
|
|
21
|
+
stroke={stroke}
|
|
22
|
+
strokeWidth={1.5}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
>
|
|
26
|
+
<Path d="M15.75 7.5H2.25M12 1.5V4.5M6 1.5V4.5M5.85 16.5H12.15C13.4101 16.5 14.0402 16.5 14.5215 16.2548C14.9448 16.039 15.289 15.6948 15.5048 15.2715C15.75 14.7902 15.75 14.1601 15.75 12.9V6.6C15.75 5.33988 15.75 4.70982 15.5048 4.22852C15.289 3.80516 14.9448 3.46095 14.5215 3.24524C14.0402 3 13.4101 3 12.15 3H5.85C4.58988 3 3.95982 3 3.47852 3.24524C3.05516 3.46095 2.71095 3.80516 2.49524 4.22852C2.25 4.70982 2.25 5.33988 2.25 6.6V12.9C2.25 14.1601 2.25 14.7902 2.49524 15.2715C2.71095 15.6948 3.05516 16.039 3.47852 16.2548C3.95982 16.5 4.58988 16.5 5.85 16.5Z" />
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export { CalendarIcon };
|
|
32
|
+
export default CalendarIcon;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// components/icons/CalendarIcon.tsx
|
|
2
|
+
import React from "react";
|
|
3
|
+
|
|
4
|
+
interface CalendarIconProps extends React.SVGProps<SVGSVGElement> {
|
|
5
|
+
/** Icon width in pixels (defaults to 18) */
|
|
6
|
+
width?: number;
|
|
7
|
+
/** Icon height in pixels (defaults to 18) */
|
|
8
|
+
height?: number;
|
|
9
|
+
/** Stroke color (defaults to currentColor) */
|
|
10
|
+
stroke?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export default function CalendarIcon({
|
|
14
|
+
width = 18,
|
|
15
|
+
height = 18,
|
|
16
|
+
stroke = "currentColor",
|
|
17
|
+
...rest
|
|
18
|
+
}: CalendarIconProps) {
|
|
19
|
+
return (
|
|
20
|
+
<svg
|
|
21
|
+
width={width}
|
|
22
|
+
height={height}
|
|
23
|
+
viewBox="0 0 18 18"
|
|
24
|
+
fill="none"
|
|
25
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
26
|
+
stroke={stroke}
|
|
27
|
+
strokeWidth={1.5}
|
|
28
|
+
strokeLinecap="round"
|
|
29
|
+
strokeLinejoin="round"
|
|
30
|
+
{...rest}
|
|
31
|
+
>
|
|
32
|
+
<path d="M15.75 7.5H2.25M12 1.5V4.5M6 1.5V4.5M5.85 16.5H12.15C13.4101 16.5 14.0402 16.5 14.5215 16.2548C14.9448 16.039 15.289 15.6948 15.5048 15.2715C15.75 14.7902 15.75 14.1601 15.75 12.9V6.6C15.75 5.33988 15.75 4.70982 15.5048 4.22852C15.289 3.80516 14.9448 3.46095 14.5215 3.24524C14.0402 3 13.4101 3 12.15 3H5.85C4.58988 3 3.95982 3 3.47852 3.24524C3.05516 3.46095 2.71095 3.80516 2.49524 4.22852C2.25 4.70982 2.25 5.33988 2.25 6.6V12.9C2.25 14.1601 2.25 14.7902 2.49524 15.2715C2.71095 15.6948 3.05516 16.039 3.47852 16.2548C3.95982 16.5 4.58988 16.5 5.85 16.5Z" />
|
|
33
|
+
</svg>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type ClockIconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number | string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export const ClockIcon = ({
|
|
11
|
+
size = 18,
|
|
12
|
+
color = '#000000',
|
|
13
|
+
strokeWidth = 1.5,
|
|
14
|
+
}: ClockIconProps) => {
|
|
15
|
+
return (
|
|
16
|
+
<Svg width={size} height={size} viewBox="0 0 18 18" fill="none">
|
|
17
|
+
<Path
|
|
18
|
+
d="M9 4.5V9L12 10.5M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z"
|
|
19
|
+
stroke={color}
|
|
20
|
+
strokeWidth={strokeWidth}
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
ClockIcon.displayName = 'ClockIcon';
|
|
29
|
+
|
|
30
|
+
export default ClockIcon;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
// components/icons/clock-icon.tsx
|
|
2
|
+
"use client";
|
|
3
|
+
|
|
4
|
+
import * as React from "react";
|
|
5
|
+
import { cn } from "../../utils/cn";
|
|
6
|
+
|
|
7
|
+
type IconProps = React.SVGProps<SVGSVGElement> & {
|
|
8
|
+
size?: number | string;
|
|
9
|
+
color?: string;
|
|
10
|
+
strokeWidth?: number | string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export const ClockIcon = React.forwardRef<SVGSVGElement, IconProps>(
|
|
14
|
+
(
|
|
15
|
+
{
|
|
16
|
+
size = 18,
|
|
17
|
+
color = "currentColor",
|
|
18
|
+
strokeWidth = 1.5,
|
|
19
|
+
className,
|
|
20
|
+
...props
|
|
21
|
+
},
|
|
22
|
+
ref
|
|
23
|
+
) => {
|
|
24
|
+
return (
|
|
25
|
+
<svg
|
|
26
|
+
ref={ref}
|
|
27
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
28
|
+
width={size}
|
|
29
|
+
height={size}
|
|
30
|
+
viewBox="0 0 18 18"
|
|
31
|
+
fill="none"
|
|
32
|
+
role="img"
|
|
33
|
+
aria-label={(props as any)["aria-label"] ?? "Clock icon"}
|
|
34
|
+
className={cn("inline-block", className)}
|
|
35
|
+
{...props}
|
|
36
|
+
>
|
|
37
|
+
<path
|
|
38
|
+
d="M9 4.5V9L12 10.5M16.5 9C16.5 13.1421 13.1421 16.5 9 16.5C4.85786 16.5 1.5 13.1421 1.5 9C1.5 4.85786 4.85786 1.5 9 1.5C13.1421 1.5 16.5 4.85786 16.5 9Z"
|
|
39
|
+
stroke={color}
|
|
40
|
+
strokeWidth={strokeWidth}
|
|
41
|
+
strokeLinecap="round"
|
|
42
|
+
strokeLinejoin="round"
|
|
43
|
+
/>
|
|
44
|
+
</svg>
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
|
|
49
|
+
ClockIcon.displayName = "ClockIcon";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path, G, Defs, ClipPath, Rect } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type AccountIconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export default function AccountIcon({ size = 16 }: AccountIconProps) {
|
|
9
|
+
return (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<G clipPath="url(#clip0)">
|
|
17
|
+
<Path
|
|
18
|
+
d="M3.544 12.96c.406-.956 1.353-1.626 2.456-1.626h4c1.104 0 2.051.67 2.456 1.626M10.667 6.334c0 1.473-1.194 2.667-2.667 2.667-1.473 0-2.667-1.194-2.667-2.667 0-1.473 1.194-2.667 2.667-2.667 1.473 0 2.667 1.194 2.667 2.667ZM14.667 8c0 3.683-2.985 6.667-6.667 6.667C4.318 14.667 1.333 11.683 1.333 8c0-3.681 2.985-6.666 6.667-6.666 3.682 0 6.667 2.985 6.667 6.666Z"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
strokeWidth={1.25}
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
</G>
|
|
25
|
+
<Defs>
|
|
26
|
+
<ClipPath id="clip0">
|
|
27
|
+
<Rect width={16} height={16} fill="white" />
|
|
28
|
+
</ClipPath>
|
|
29
|
+
</Defs>
|
|
30
|
+
</Svg>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export { AccountIcon };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type AccountIconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export default function AccountIcon({ size = 16, ...props }: AccountIconProps) {
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 16 16"
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
{...props}
|
|
16
|
+
>
|
|
17
|
+
<g clipPath="url(#clip0)">
|
|
18
|
+
<path
|
|
19
|
+
d="M3.544 12.96c.406-.956 1.353-1.626 2.456-1.626h4c1.104 0 2.051.67 2.456 1.626M10.667 6.334c0 1.473-1.194 2.667-2.667 2.667-1.473 0-2.667-1.194-2.667-2.667 0-1.473 1.194-2.667 2.667-2.667 1.473 0 2.667 1.194 2.667 2.667ZM14.667 8c0 3.683-2.985 6.667-6.667 6.667C4.318 14.667 1.333 11.683 1.333 8c0-3.681 2.985-6.666 6.667-6.666 3.682 0 6.667 2.985 6.667 6.666Z"
|
|
20
|
+
stroke="currentColor"
|
|
21
|
+
strokeWidth={1.25}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
</g>
|
|
26
|
+
<defs>
|
|
27
|
+
<clipPath id="clip0">
|
|
28
|
+
<rect width={16} height={16} fill="white" />
|
|
29
|
+
</clipPath>
|
|
30
|
+
</defs>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
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 UserApproveIcon: React.FC<IconProps> = ({ size = 18, color = '#000000' }) => (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 18 18"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
d="M9 11.625H5.625C4.57833 11.625 4.05499 11.625 3.62914 11.7542C2.67034 12.045 1.92003 12.7953 1.62918 13.7541C1.5 14.18 1.5 14.7033 1.5 15.75M12 13.5L13.5 15L16.5 12M10.875 5.625C10.875 7.48896 9.36396 9 7.5 9C5.63604 9 4.125 7.48896 4.125 5.625C4.125 3.76104 5.63604 2.25 7.5 2.25C9.36396 2.25 10.875 3.76104 10.875 5.625Z"
|
|
18
|
+
stroke={color}
|
|
19
|
+
strokeWidth="1.5"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
export { UserApproveIcon };
|
|
27
|
+
export default UserApproveIcon;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const UserApproveIcon: React.FC<IconProps> = ({ size = 18, color = "currentColor" }) => (
|
|
9
|
+
<svg
|
|
10
|
+
width={size}
|
|
11
|
+
height={size}
|
|
12
|
+
viewBox="0 0 18 18"
|
|
13
|
+
fill="none"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
d="M9 11.625H5.625C4.57833 11.625 4.05499 11.625 3.62914 11.7542C2.67034 12.045 1.92003 12.7953 1.62918 13.7541C1.5 14.18 1.5 14.7033 1.5 15.75M12 13.5L13.5 15L16.5 12M10.875 5.625C10.875 7.48896 9.36396 9 7.5 9C5.63604 9 4.125 7.48896 4.125 5.625C4.125 3.76104 5.63604 2.25 7.5 2.25C9.36396 2.25 10.875 3.76104 10.875 5.625Z"
|
|
18
|
+
stroke={color}
|
|
19
|
+
strokeWidth="1.5"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
export default UserApproveIcon;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
color?: string;
|
|
8
|
+
strokeWidth?: number;
|
|
9
|
+
size?: number;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
const UserIcon: React.FC<IconProps> = ({
|
|
13
|
+
size = 18,
|
|
14
|
+
color = '#000000',
|
|
15
|
+
strokeWidth = 1.5,
|
|
16
|
+
}) => (
|
|
17
|
+
<Svg
|
|
18
|
+
width={size}
|
|
19
|
+
height={size}
|
|
20
|
+
viewBox="0 0 18 18"
|
|
21
|
+
fill="none"
|
|
22
|
+
>
|
|
23
|
+
<Path
|
|
24
|
+
d="M15 15.75C15 14.7033 15 14.18 14.8708 13.7541C14.58 12.7953 13.8297 12.045 12.8709 11.7542C12.445 11.625 11.9217 11.625 10.875 11.625H7.125C6.07833 11.625 5.55499 11.625 5.12914 11.7542C4.17034 12.045 3.42003 12.7953 3.12918 13.7541C3 14.18 3 14.7033 3 15.75M12.375 5.625C12.375 7.48896 10.864 9 9 9C7.13604 9 5.625 7.48896 5.625 5.625C5.625 3.76104 7.13604 2.25 9 2.25C10.864 2.25 12.375 3.76104 12.375 5.625Z"
|
|
25
|
+
stroke={color}
|
|
26
|
+
strokeWidth={strokeWidth}
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
/>
|
|
30
|
+
</Svg>
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
export { UserIcon };
|
|
34
|
+
export default UserIcon;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
width?: number;
|
|
5
|
+
height?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
size?: number;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const UserIcon: React.FC<IconProps> = ({
|
|
12
|
+
size = 18,
|
|
13
|
+
color = "currentColor",
|
|
14
|
+
strokeWidth = 1.5,
|
|
15
|
+
}) => (
|
|
16
|
+
<svg
|
|
17
|
+
width={size}
|
|
18
|
+
height={size}
|
|
19
|
+
viewBox="0 0 18 18"
|
|
20
|
+
fill="none"
|
|
21
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
22
|
+
>
|
|
23
|
+
<path
|
|
24
|
+
d="M15 15.75C15 14.7033 15 14.18 14.8708 13.7541C14.58 12.7953 13.8297 12.045 12.8709 11.7542C12.445 11.625 11.9217 11.625 10.875 11.625H7.125C6.07833 11.625 5.55499 11.625 5.12914 11.7542C4.17034 12.045 3.42003 12.7953 3.12918 13.7541C3 14.18 3 14.7033 3 15.75M12.375 5.625C12.375 7.48896 10.864 9 9 9C7.13604 9 5.625 7.48896 5.625 5.625C5.625 3.76104 7.13604 2.25 9 2.25C10.864 2.25 12.375 3.76104 12.375 5.625Z"
|
|
25
|
+
stroke={color}
|
|
26
|
+
strokeWidth={strokeWidth}
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
export default UserIcon;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface UserPlusIconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
width?: number;
|
|
7
|
+
height?: number;
|
|
8
|
+
strokeWidth?: number;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const UserPlusIcon: React.FC<UserPlusIconProps> = ({
|
|
12
|
+
size = 18,
|
|
13
|
+
width,
|
|
14
|
+
height,
|
|
15
|
+
strokeWidth = 1.5,
|
|
16
|
+
}) => {
|
|
17
|
+
const iconWidth = width || size;
|
|
18
|
+
const iconHeight = height || size;
|
|
19
|
+
|
|
20
|
+
return (
|
|
21
|
+
<Svg
|
|
22
|
+
width={iconWidth}
|
|
23
|
+
height={iconHeight}
|
|
24
|
+
viewBox="0 0 18 18"
|
|
25
|
+
fill="none"
|
|
26
|
+
>
|
|
27
|
+
<Path
|
|
28
|
+
d="M14.25 7.5V3M12 5.25H16.5M12 15.75V14.85C12 13.5899 12 12.9598 11.7548 12.4785C11.539 12.0552 11.1948 11.711 10.7715 11.4952C10.2902 11.25 9.66012 11.25 8.4 11.25H5.1C3.83988 11.25 3.20982 11.25 2.72852 11.4952C2.30516 11.711 1.96095 12.0552 1.74524 12.4785C1.5 12.9598 1.5 13.5899 1.5 14.85V15.75M9.375 5.625C9.375 7.07475 8.19975 8.25 6.75 8.25C5.30025 8.25 4.125 7.07475 4.125 5.625C4.125 4.17525 5.30025 3 6.75 3C8.19975 3 9.375 4.17525 9.375 5.625Z"
|
|
29
|
+
stroke="currentColor"
|
|
30
|
+
strokeWidth={strokeWidth}
|
|
31
|
+
strokeLinecap="round"
|
|
32
|
+
strokeLinejoin="round"
|
|
33
|
+
/>
|
|
34
|
+
</Svg>
|
|
35
|
+
);
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export default UserPlusIcon;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface UserPlusIconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
className?: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const UserPlusIcon: React.FC<UserPlusIconProps> = ({
|
|
12
|
+
size = 18,
|
|
13
|
+
width,
|
|
14
|
+
height,
|
|
15
|
+
strokeWidth = 1.5,
|
|
16
|
+
className,
|
|
17
|
+
...props
|
|
18
|
+
}) => {
|
|
19
|
+
const iconWidth = width || size;
|
|
20
|
+
const iconHeight = height || size;
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<svg
|
|
24
|
+
width={iconWidth}
|
|
25
|
+
height={iconHeight}
|
|
26
|
+
viewBox="0 0 18 18"
|
|
27
|
+
fill="none"
|
|
28
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
29
|
+
className={className}
|
|
30
|
+
{...props}
|
|
31
|
+
>
|
|
32
|
+
<path
|
|
33
|
+
d="M14.25 7.5V3M12 5.25H16.5M12 15.75V14.85C12 13.5899 12 12.9598 11.7548 12.4785C11.539 12.0552 11.1948 11.711 10.7715 11.4952C10.2902 11.25 9.66012 11.25 8.4 11.25H5.1C3.83988 11.25 3.20982 11.25 2.72852 11.4952C2.30516 11.711 1.96095 12.0552 1.74524 12.4785C1.5 12.9598 1.5 13.5899 1.5 14.85V15.75M9.375 5.625C9.375 7.07475 8.19975 8.25 6.75 8.25C5.30025 8.25 4.125 7.07475 4.125 5.625C4.125 4.17525 5.30025 3 6.75 3C8.19975 3 9.375 4.17525 9.375 5.625Z"
|
|
34
|
+
stroke="currentColor"
|
|
35
|
+
strokeWidth={strokeWidth}
|
|
36
|
+
strokeLinecap="round"
|
|
37
|
+
strokeLinejoin="round"
|
|
38
|
+
/>
|
|
39
|
+
</svg>
|
|
40
|
+
);
|
|
41
|
+
};
|
|
42
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type UserXIconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number | string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export default function UserXIcon({
|
|
11
|
+
size = 16,
|
|
12
|
+
color = '#000000',
|
|
13
|
+
strokeWidth = 1.25,
|
|
14
|
+
}: UserXIconProps) {
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
width={size}
|
|
18
|
+
height={size}
|
|
19
|
+
viewBox="0 0 16 16"
|
|
20
|
+
fill="none"
|
|
21
|
+
stroke={color}
|
|
22
|
+
strokeWidth={strokeWidth}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
>
|
|
26
|
+
<Path
|
|
27
|
+
d="M11.0002 10.6667L14.3335 14M14.3335 10.6667L11.0002 14M8.00016 10.3333H5.00017C4.06979 10.3333 3.6046 10.3333 3.22607 10.4482C2.3738 10.7067 1.70686 11.3736 1.44832 12.2259C1.3335 12.6044 1.3335 13.0696 1.3335 14M9.66683 5C9.66683 6.65685 8.32368 8 6.66683 8C5.00998 8 3.66683 6.65685 3.66683 5C3.66683 3.34315 5.00998 2 6.66683 2C8.32368 2 9.66683 3.34315 9.66683 5Z"
|
|
28
|
+
/>
|
|
29
|
+
</Svg>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export { UserXIcon };
|