hr function
The <hr> HTML element represents a thematic break between paragraph-level elements: for example, a change of scene in a story, or a shift of topic within a section.
Implementation
Component hr(
{Key? key,
String? id,
String? classes,
Styles? styles,
Map<String, String>? attributes,
Map<String, EventCallback>? events}) {
return DomComponent(
tag: 'hr',
key: key,
id: id,
classes: classes,
styles: styles,
attributes: attributes,
events: events,
);
}