animate

ReactElement animate([

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

Creates an <animate> element.

Implementation

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