0.0.1 • Published 5 years ago

@react-vibrant/ionicons-icons v0.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

@react-vibrant/ionicons-icons

Usage:

Add the following file in app index:

import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
// Import styles
import '@react-vibrant/ionicons-icons/build/index.css';

ReactDOM.render(<App />, document.getElementById('root'));

Then:

import { Icon } from '@react-vibrant/ionicons-icons';

function App() {
  return (
    <Icon containerSize="small" iconSize="medium" color="white" value="ion-ios-add-circle-outline"/>
  );
}