svgElement
ReactElement
svgElement(
Creates a React element for the given SVG tag name.
Implementation
ReactElement svgElement(
String tagName, [
Map<String, Object?>? props,
List<ReactElement>? children,
]) => (children != null && children.isNotEmpty)
? createElementWithChildren(
tagName.toJS,
props != null ? createProps(props) : null,
children,
)
: createElement(tagName.toJS, props != null ? createProps(props) : null);