Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 496 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 496 Bytes

react-simple-icons

Build Status

React component for a subset of social icons from http://simpleicons.org

npm i react-simple-icons
import React from 'react'
import Icon from 'react-simple-icons'

const App = () => {
  return (
    <div>
      <Icon name='twitter' />
      <Icon name='facebook' />
    </div>
  )
}

export default App

MIT License