WARNING EXPERIMENTAL
@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.
npm install @frendz/react-native-icons
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
react "^18.3.1",
react-native "^0.76.7",
react-native-svg "^15.11.1"
the package has been tested in the above dependency versions; other versions may not work
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