@hnordt/reax-icondeprecated

Bootstrap Icon component for React

Usage no npm install needed!

<script type="module">
  import hnordtReaxIcon from 'https://cdn.skypack.dev/@hnordt/reax-icon';
</script>

README

Reax Icon

Bootstrap Icon component for React

npm version

PropTypes

{
  type: PropTypes.oneOf([
    'glyphicon',
    'fa',
    'icon'
  ]),
  name: PropTypes.string.isRequired
}

Usage

npm install --save @hnordt/reax-icon
import React from 'react';
import Icon from '@hnordt/reax-icon';

const Foo = () => (
  <Icon name="envelope" />
);

export default Foo;