oadp-material
Version:
oadp-material
16 lines • 511 B
JavaScript
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/objectWithoutPropertiesLoose";
var _excluded = ["src", "className", "alt"];
import * as React from 'react';
import "./index.scss";
var OadpImg = function OadpImg(_ref) {
var src = _ref.src,
className = _ref.className,
alt = _ref.alt,
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded);
return /*#__PURE__*/React.createElement("img", {
src: src,
className: className,
alt: alt
});
};
export default OadpImg;