$h2Props

El $h2Props({

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

Creates an <h2> element with props.

Implementation

El $h2Props({
  String? className,
  String? id,
  Map<String, dynamic>? style,
  Map<String, dynamic>? props,
}) => El(
  H2Element.fromJS(
    _createJsxElement(
      'h2',
      _buildJsxProps(className: className, id: id, style: style, props: props),
    ),
  ),
);