$hr

ReactElement $hr({

  1. String? className,
  2. String? id,
  3. Map<String, dynamic>? style,
  4. Map<String, dynamic>? props,
})

Creates an <hr> element (self-closing, no children).

Implementation

ReactElement $hr({
  String? className,
  String? id,
  Map<String, dynamic>? style,
  Map<String, dynamic>? props,
}) => _createJsxElement(
  'hr',
  _buildJsxProps(className: className, id: id, style: style, props: props),
);