imageSvg

ReactElement imageSvg([

  1. Map<String, Object?>? props
])

Creates an <image> element (SVG).

Implementation

ReactElement imageSvg([Map<String, Object?>? props]) =>
    createElement('image'.toJS, props != null ? createProps(props) : null);