UNPKG

@ima/devtools

Version:

IMA.js debugging panel in the Chrome Developer Tools window.

14 lines (9 loc) 228 B
import PropTypes from 'prop-types'; import Icons from './icons'; export default function Icon({ name }) { const Component = Icons[name]; return <Component />; } Icon.propTypes = { name: PropTypes.string.isRequired, };