fePointLight

ReactElement fePointLight([

  1. Map<String, Object?>? props
])

Creates a <fePointLight> element.

Implementation

ReactElement fePointLight([Map<String, Object?>? props]) => createElement(
  'fePointLight'.toJS,
  props != null ? createProps(props) : null,
);