Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 482 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 482 Bytes

spectrum-icons

Spectrum’s amazing iconset, republished on npm as React components.

See them all

Usage

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

export default () => (
  <div style={{ color: 'cornflowerblue' }}>
    <Icon glyph="explore" size={48} />
  </div>
)