hr function

Element hr({
  1. String? id,
  2. String? className,
  3. Map<String, dynamic>? attributes,
})

Implementation

Element hr({String? id, String? className, Map<String, dynamic>? attributes}) =>
    h(
      'hr',
      id: id,
      className: className,
      attributes: attributes,
      selfClosing: true,
    );