@frendz/react-native-icons
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

WARNING EXPERIMENTAL

frendz Icons

npm version npm downloads

@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-icons

Usage

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

Support

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

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

Package Sidebar

Install

npm i @frendz/react-native-icons

Weekly Downloads

2

Version

1.0.1

License

MIT

Unpacked Size

147 kB

Total Files

102

Last publish

Collaborators

  • digiloudis