| 1 |
/** |
| 2 |
* WordPress dependencies. |
| 3 |
*/ |
| 4 |
import { WPElement } from '@wordpress/element'; |
| 5 |
|
| 6 |
/** |
| 7 |
* Image component. |
| 8 |
* |
| 9 |
* @param {Option} props Component props. |
| 10 |
* |
| 11 |
* @returns {WPElement} Component element. |
| 12 |
*/ |
| 13 |
export default ({ alt, height, ID, src, width, ...props }) => { |
| 14 |
return <img alt={alt} src={src} width={width} height={height} {...props} />; |
| 15 |
}; |
| 16 |
|