1.0.1 • Published 10 months ago

@frendz/react-native-icons v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

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

1.0.1

10 months ago

1.0.0

10 months ago

0.0.6

10 months ago

0.0.5

10 months ago

0.0.4

10 months ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago