hr

ReactElement hr([

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

Creates an <hr> element.

Implementation

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