import PropTypes from 'prop-types'; import React from 'react'; export default function InlineSVG({ src }) { return ; } InlineSVG.propTypes = { src: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired, };