For use with this setup.
Use:
<Icon shape="edit" />For use with this setup.
Use:
<Icon shape="edit" />| import React from 'react'; | |
| const Icon = React.createClass({ | |
| render () { | |
| const shape = this.props.shape; | |
| const sprite = '/public/img/sprites.svg'; | |
| return <svg><use xlinkHref={`${sprite}#shape-${shape}`} /></svg>; | |
| } | |
| }); | |
| module.exports = Icon; |