10 lines
243 B
JavaScript
10 lines
243 B
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
|
|
export default function InlineSVG({ src }) {
|
|
return <svg id={src} />;
|
|
}
|
|
|
|
InlineSVG.propTypes = {
|
|
src: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired,
|
|
};
|