Skip to content

Latest commit

History

History
51 lines (32 loc) 路 1.38 KB

README.md

File metadata and controls

51 lines (32 loc) 路 1.38 KB

馃悽 Getting started

Preview background library

Table of Content

Setup

Install the dependency

Depdending on your package manager, here are two examples:

NPM : npm install react-ios-icons
YARN : yarn add react-ios-icons

Import an icon

Example 1

import { Battery } from 'react-ios-icons'

// Renders the one-fifth of battery's capacity
export const DummyComponent: React.FC = () => {
  return <Battery progression={75} />
}

Example 2

import {} from 'react-ios-icons'

Contributing

If you would like to contribute and improve our project, we've set certain rules to maintain a better scoial and development environment, almost everything is mentioned in the CONTRIBUTING.md file.

Where do I start?

In order to create an icon, you need to generate one by executing:

NPM : npm run generate <ComponentName>
YARN : yarn generate <ComponentName>

2 questions will be asked to you which helps giving instructions that will be provide a start code for your icon.