@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 React from "react";
|
|
2
|
+
|
|
3
|
+
type UserXIconProps = {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
className?: string;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number | string;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export default function UserXIcon({
|
|
11
|
+
size = 16,
|
|
12
|
+
className = "",
|
|
13
|
+
color = "currentColor",
|
|
14
|
+
strokeWidth = 1.25,
|
|
15
|
+
...props
|
|
16
|
+
}) {
|
|
17
|
+
return (
|
|
18
|
+
<svg
|
|
19
|
+
width={size}
|
|
20
|
+
height={size}
|
|
21
|
+
viewBox="0 0 16 16"
|
|
22
|
+
fill="none"
|
|
23
|
+
className={className}
|
|
24
|
+
stroke={color}
|
|
25
|
+
strokeWidth={strokeWidth}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
29
|
+
{...props}
|
|
30
|
+
>
|
|
31
|
+
<path
|
|
32
|
+
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"
|
|
33
|
+
/>
|
|
34
|
+
</svg>
|
|
35
|
+
)}
|
|
36
|
+
|
|
37
|
+
// Usage example:
|
|
38
|
+
// <UserXIcon size={24} color="#333" strokeWidth={2} className="my-2" />
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
type Users03IconProps = {
|
|
5
|
+
size?: number | string;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export default function Users03Icon({
|
|
9
|
+
size = 16,
|
|
10
|
+
}: Users03IconProps) {
|
|
11
|
+
return (
|
|
12
|
+
<Svg
|
|
13
|
+
width={size}
|
|
14
|
+
height={size}
|
|
15
|
+
viewBox="0 0 16 16"
|
|
16
|
+
fill="none"
|
|
17
|
+
>
|
|
18
|
+
<Path
|
|
19
|
+
d="M11.9999 10.5579C12.9705 11.0455 13.8026 11.828 14.4101 12.8064C14.5303 13.0002 14.5905 13.0971 14.6113 13.2312C14.6535 13.5038 14.4671 13.839 14.2132 13.9469C14.0882 14 13.9477 14 13.6666 14M10.6666 7.68816C11.6544 7.19726 12.3332 6.17791 12.3332 5C12.3332 3.82209 11.6544 2.80274 10.6666 2.31184M9.33322 5C9.33322 6.65685 7.99008 8 6.33322 8C4.67637 8 3.33322 6.65685 3.33322 5C3.33322 3.34315 4.67637 2 6.33322 2C7.99008 2 9.33322 3.34315 9.33322 5ZM1.70604 12.6256C2.76892 11.0297 4.44614 10 6.33322 10C8.22031 10 9.89753 11.0297 10.9604 12.6256C11.1932 12.9752 11.3097 13.15 11.2963 13.3733C11.2858 13.5471 11.1719 13.76 11.0329 13.8651C10.8545 14 10.6091 14 10.1183 14H2.54813C2.05734 14 1.81194 14 1.63352 13.8651C1.49459 13.76 1.38062 13.5471 1.37018 13.3733C1.35678 13.15 1.4732 12.9752 1.70604 12.6256Z"
|
|
20
|
+
stroke="currentColor"
|
|
21
|
+
strokeWidth={1.25}
|
|
22
|
+
strokeLinecap="round"
|
|
23
|
+
strokeLinejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
</Svg>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export { Users03Icon };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
type Users03IconProps = React.SVGProps<SVGSVGElement> & {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export default function Users03Icon({
|
|
8
|
+
size = 16,
|
|
9
|
+
className,
|
|
10
|
+
...props
|
|
11
|
+
}: Users03IconProps) {
|
|
12
|
+
return (
|
|
13
|
+
<svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 16 16"
|
|
17
|
+
fill="none"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
className={className}
|
|
20
|
+
{...props}
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M11.9999 10.5579C12.9705 11.0455 13.8026 11.828 14.4101 12.8064C14.5303 13.0002 14.5905 13.0971 14.6113 13.2312C14.6535 13.5038 14.4671 13.839 14.2132 13.9469C14.0882 14 13.9477 14 13.6666 14M10.6666 7.68816C11.6544 7.19726 12.3332 6.17791 12.3332 5C12.3332 3.82209 11.6544 2.80274 10.6666 2.31184M9.33322 5C9.33322 6.65685 7.99008 8 6.33322 8C4.67637 8 3.33322 6.65685 3.33322 5C3.33322 3.34315 4.67637 2 6.33322 2C7.99008 2 9.33322 3.34315 9.33322 5ZM1.70604 12.6256C2.76892 11.0297 4.44614 10 6.33322 10C8.22031 10 9.89753 11.0297 10.9604 12.6256C11.1932 12.9752 11.3097 13.15 11.2963 13.3733C11.2858 13.5471 11.1719 13.76 11.0329 13.8651C10.8545 14 10.6091 14 10.1183 14H2.54813C2.05734 14 1.81194 14 1.63352 13.8651C1.49459 13.76 1.38062 13.5471 1.37018 13.3733C1.35678 13.15 1.4732 12.9752 1.70604 12.6256Z"
|
|
24
|
+
stroke="currentColor"
|
|
25
|
+
strokeWidth={1.25}
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</svg>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
interface IconProps {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const UsersIcon: React.FC<IconProps> = ({ size = 20, color = '#000000', strokeWidth = 1.5 }) => (
|
|
11
|
+
<Svg
|
|
12
|
+
width={size}
|
|
13
|
+
height={size}
|
|
14
|
+
viewBox="0 0 20 20"
|
|
15
|
+
fill="none"
|
|
16
|
+
>
|
|
17
|
+
<Path
|
|
18
|
+
d="M18.3327 17.5V15.8333C18.3327 14.2801 17.2704 12.9751 15.8327 12.605M12.916 2.7423C14.1376 3.23679 14.9993 4.43443 14.9993 5.83333C14.9993 7.23224 14.1376 8.42988 12.916 8.92437M14.166 17.5C14.166 15.9469 14.166 15.1703 13.9123 14.5577C13.574 13.741 12.9251 13.092 12.1083 12.7537C11.4957 12.5 10.7192 12.5 9.16602 12.5H6.66602C5.11288 12.5 4.33631 12.5 3.72374 12.7537C2.90698 13.092 2.25806 13.741 1.91975 14.5577C1.66602 15.1703 1.66602 15.9469 1.66602 17.5M11.2493 5.83333C11.2493 7.67428 9.75697 9.16667 7.91602 9.16667C6.07507 9.16667 4.58268 7.67428 4.58268 5.83333C4.58268 3.99238 6.07507 2.5 7.91602 2.5C9.75697 2.5 11.2493 3.99238 11.2493 5.83333Z"
|
|
19
|
+
stroke={color}
|
|
20
|
+
strokeWidth={strokeWidth}
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
</Svg>
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
export { UsersIcon };
|
|
28
|
+
export default UsersIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
interface IconProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const UsersIcon: React.FC<IconProps> = ({ size = 20, color = "currentColor", strokeWidth = 1.5 }) => (
|
|
10
|
+
<svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 20 20"
|
|
14
|
+
fill="none"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
>
|
|
17
|
+
<path
|
|
18
|
+
d="M18.3327 17.5V15.8333C18.3327 14.2801 17.2704 12.9751 15.8327 12.605M12.916 2.7423C14.1376 3.23679 14.9993 4.43443 14.9993 5.83333C14.9993 7.23224 14.1376 8.42988 12.916 8.92437M14.166 17.5C14.166 15.9469 14.166 15.1703 13.9123 14.5577C13.574 13.741 12.9251 13.092 12.1083 12.7537C11.4957 12.5 10.7192 12.5 9.16602 12.5H6.66602C5.11288 12.5 4.33631 12.5 3.72374 12.7537C2.90698 13.092 2.25806 13.741 1.91975 14.5577C1.66602 15.1703 1.66602 15.9469 1.66602 17.5M11.2493 5.83333C11.2493 7.67428 9.75697 9.16667 7.91602 9.16667C6.07507 9.16667 4.58268 7.67428 4.58268 5.83333C4.58268 3.99238 6.07507 2.5 7.91602 2.5C9.75697 2.5 11.2493 3.99238 11.2493 5.83333Z"
|
|
19
|
+
stroke={color}
|
|
20
|
+
strokeWidth={strokeWidth}
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
export default UsersIcon;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
|
|
4
|
+
export const UsersPlusIcon = ({
|
|
5
|
+
size = 16,
|
|
6
|
+
}: {
|
|
7
|
+
size?: number;
|
|
8
|
+
}) => {
|
|
9
|
+
return (
|
|
10
|
+
<Svg
|
|
11
|
+
width={size}
|
|
12
|
+
height={size}
|
|
13
|
+
viewBox="0 0 16 16"
|
|
14
|
+
fill="none"
|
|
15
|
+
>
|
|
16
|
+
<Path
|
|
17
|
+
d="M12.6654 14V10M10.6654 12H14.6654M7.9987 10H5.33203C4.08952 10 3.46826 10 2.97821 10.203C2.3248 10.4736 1.80567 10.9928 1.53502 11.6462C1.33203 12.1362 1.33203 12.7575 1.33203 14M10.332 2.19384C11.3093 2.58943 11.9987 3.54754 11.9987 4.66667C11.9987 5.78579 11.3093 6.7439 10.332 7.13949M8.9987 4.66667C8.9987 6.13943 7.80479 7.33333 6.33203 7.33333C4.85927 7.33333 3.66536 6.13943 3.66536 4.66667C3.66536 3.19391 4.85927 2 6.33203 2C7.80479 2 8.9987 3.19391 8.9987 4.66667Z"
|
|
18
|
+
stroke="currentColor"
|
|
19
|
+
strokeWidth="1.5"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
</Svg>
|
|
24
|
+
);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export default UsersPlusIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import React from "react";
|
|
4
|
+
|
|
5
|
+
export const UsersPlusIcon = ({
|
|
6
|
+
className,
|
|
7
|
+
size = 16,
|
|
8
|
+
}: {
|
|
9
|
+
className?: string;
|
|
10
|
+
size?: number;
|
|
11
|
+
}) => {
|
|
12
|
+
return (
|
|
13
|
+
<svg
|
|
14
|
+
width={size}
|
|
15
|
+
height={size}
|
|
16
|
+
viewBox="0 0 16 16"
|
|
17
|
+
fill="none"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
className={className}
|
|
20
|
+
aria-label="Users plus icon"
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M12.6654 14V10M10.6654 12H14.6654M7.9987 10H5.33203C4.08952 10 3.46826 10 2.97821 10.203C2.3248 10.4736 1.80567 10.9928 1.53502 11.6462C1.33203 12.1362 1.33203 12.7575 1.33203 14M10.332 2.19384C11.3093 2.58943 11.9987 3.54754 11.9987 4.66667C11.9987 5.78579 11.3093 6.7439 10.332 7.13949M8.9987 4.66667C8.9987 6.13943 7.80479 7.33333 6.33203 7.33333C4.85927 7.33333 3.66536 6.13943 3.66536 4.66667C3.66536 3.19391 4.85927 2 6.33203 2C7.80479 2 8.9987 3.19391 8.9987 4.66667Z"
|
|
24
|
+
stroke="currentColor"
|
|
25
|
+
strokeWidth="1.5"
|
|
26
|
+
strokeLinecap="round"
|
|
27
|
+
strokeLinejoin="round"
|
|
28
|
+
/>
|
|
29
|
+
</svg>
|
|
30
|
+
);
|
|
31
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { default as AccountIcon } from './AccountIcon';
|
|
2
|
+
export { default as UserApproveIcon } from './UserApproveIcon';
|
|
3
|
+
export { default as UserIcon } from './UserIcon';
|
|
4
|
+
export { default as UserPlusIcon } from './UserPlusIcon';
|
|
5
|
+
export { default as UserXIcon } from './UserXIcon';
|
|
6
|
+
export { default as Users03Icon } from './Users03Icon';
|
|
7
|
+
export { default as UsersIcon } from './UsersIcon';
|
|
8
|
+
export { default as UsersPlusIcon } from './UsersPlusIcon';
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Postal Design Tokens — Colors
|
|
3
|
+
*
|
|
4
|
+
* Primitive hex values shared across all platforms.
|
|
5
|
+
* Web apps map these to CSS custom properties via tailwind.config.ts.
|
|
6
|
+
* Native apps use these values directly in StyleSheet.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
export const colors = {
|
|
10
|
+
black: '#000000',
|
|
11
|
+
white: '#FFFFFF',
|
|
12
|
+
|
|
13
|
+
gray: {
|
|
14
|
+
50: '#F5F5F5',
|
|
15
|
+
100: '#EEEEEF',
|
|
16
|
+
200: '#D9D9D9',
|
|
17
|
+
300: '#B3B3B3',
|
|
18
|
+
400: '#A0A0A0',
|
|
19
|
+
500: '#7F7F7F',
|
|
20
|
+
600: '#666666',
|
|
21
|
+
700: '#333333',
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
blue: {
|
|
25
|
+
DEFAULT: '#007EFF',
|
|
26
|
+
500: '#3B82F6',
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
red: {
|
|
30
|
+
DEFAULT: '#FA233B',
|
|
31
|
+
light: '#FF5A5E',
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
green: {
|
|
35
|
+
DEFAULT: '#008000',
|
|
36
|
+
spotify: '#1DB954',
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
semantic: {
|
|
40
|
+
backgroundPrimary: '#FFFFFF',
|
|
41
|
+
backgroundSecondary: '#F5F5F5',
|
|
42
|
+
backgroundTertiary: '#EEEEEF',
|
|
43
|
+
backgroundPlaceholder: '#D9D9D9',
|
|
44
|
+
textPrimary: '#000000',
|
|
45
|
+
textSecondary: '#7F7F7F',
|
|
46
|
+
textTertiary: '#666666',
|
|
47
|
+
textMuted: '#A0A0A0',
|
|
48
|
+
textPlaceholder: '#DCDCDE',
|
|
49
|
+
textInverse: '#FFFFFF',
|
|
50
|
+
separator: '#EEEEEF',
|
|
51
|
+
overlay: 'rgba(0, 0, 0, 0.28)',
|
|
52
|
+
},
|
|
53
|
+
} as const;
|
|
54
|
+
|
|
55
|
+
export type Colors = typeof colors;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Postal Design Tokens — Spacing
|
|
3
|
+
*
|
|
4
|
+
* Unitless values (logical pixels). Use directly in React Native StyleSheet
|
|
5
|
+
* or as px values in CSS/Tailwind.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
export const spacing = {
|
|
9
|
+
xs: 4,
|
|
10
|
+
sm: 8,
|
|
11
|
+
md: 16,
|
|
12
|
+
lg: 20,
|
|
13
|
+
xl: 24,
|
|
14
|
+
xxl: 32,
|
|
15
|
+
'3xl': 40,
|
|
16
|
+
'4xl': 50,
|
|
17
|
+
|
|
18
|
+
// Named semantic aliases
|
|
19
|
+
screenPadding: 20,
|
|
20
|
+
sectionGap: 40,
|
|
21
|
+
listItemGap: 16,
|
|
22
|
+
gridColumnGap: 15,
|
|
23
|
+
gridRowGap: 18,
|
|
24
|
+
gridGap: 16,
|
|
25
|
+
} as const;
|
|
26
|
+
|
|
27
|
+
export type Spacing = typeof spacing;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Postal Design Tokens — Typography
|
|
3
|
+
*
|
|
4
|
+
* Unitless values. Apply as px in CSS/Tailwind or directly in React Native TextStyle.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
export const fontSizes = {
|
|
8
|
+
caption: 11,
|
|
9
|
+
xs: 12,
|
|
10
|
+
sm: 13,
|
|
11
|
+
base: 14,
|
|
12
|
+
md: 15,
|
|
13
|
+
body: 16,
|
|
14
|
+
lg: 18,
|
|
15
|
+
xl: 20,
|
|
16
|
+
'2xl': 22,
|
|
17
|
+
'3xl': 24,
|
|
18
|
+
'4xl': 37,
|
|
19
|
+
} as const;
|
|
20
|
+
|
|
21
|
+
export const fontWeights = {
|
|
22
|
+
regular: '400',
|
|
23
|
+
medium: '500',
|
|
24
|
+
semiBold: '600',
|
|
25
|
+
bold: '700',
|
|
26
|
+
} as const;
|
|
27
|
+
|
|
28
|
+
export const lineHeights = {
|
|
29
|
+
tight: 1.1,
|
|
30
|
+
snug: 1.25,
|
|
31
|
+
normal: 1.35,
|
|
32
|
+
relaxed: 1.5,
|
|
33
|
+
} as const;
|
|
34
|
+
|
|
35
|
+
export const letterSpacings = {
|
|
36
|
+
tightest: -0.72,
|
|
37
|
+
tighter: -0.48,
|
|
38
|
+
tight: -0.37,
|
|
39
|
+
none: 0,
|
|
40
|
+
wide: 0.22,
|
|
41
|
+
wider: 0.32,
|
|
42
|
+
} as const;
|
package/src/utils/cn.ts
ADDED