UNPKG

contiago-toolbar

Version:

One of the options for outputting content from contiago xml-server

14 lines (11 loc) 352 B
import React from 'react'; import PropTypes from 'prop-types'; function Img(props) { return <img className={props.className} src={props.src} alt={props.alt} />; } Img.propTypes = { src: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired, alt: PropTypes.string.isRequired, className: PropTypes.string, }; export default Img;