$blockquote

El $blockquote({

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

Creates a <blockquote> element wrapper for JSX-style composition.

Implementation

El $blockquote({
  String? className,
  String? id,
  String? cite,
  Map<String, dynamic>? style,
  Map<String, dynamic>? props,
}) {
  final p = _buildJsxProps(
    className: className,
    id: id,
    style: style,
    props: props,
  );
  if (cite != null) p['cite'] = cite;
  return El(_createJsxElement('blockquote', p));
}