Package Exports
- @frendz/react-native-icons
- @frendz/react-native-icons/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@frendz/react-native-icons) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
WARNING EXPERIMENTAL
frendz Icons
@frendz/react-native-icons is a collection of 24 handcrafted icons originally made for the frendz social media application. Every icon is designed on a 256x256 grid and is designed to be minimalistic.
Installation
npm install @frendz/react-native-iconsUsage
import { useState } from 'react';
import { ArrowLeftIcon } from '@frendz/react-native-icons';
const [counter, setCounter] = useState(0);
const updateCounter = () => {
setCounter(counter + 1);
};
return (
<View>
<PlusIcon size={24} color={'#121212'} onPress=(updateCounter} accessibilityLabel={'plus'} />
</View>
);size: number (optional; default = 16)
color: hexcode string (optional; default = '#0A0A0A')
onPress: function (optional)\
all icons accept custom react properties
Icons
ArrowLeft, ArrowRight, Bell, BellFill, Calendar, CalendarFill, Camera, Check, Clock, Cross, Data, Dots, Heart, HeartFill, Home, HomeFill, Lock, MagnifyingGlass, PaperPlane, Pencil, Person, PersonFill, Plus, Upload
preview coming soon