$blockquote
El
$blockquote(
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));
}