path

ReactElement path([

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

Creates a <path> element.

Implementation

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