fix: add default FeBlend mode (#2530)

# Summary

Fixes #2529
`FeBlend` should have default blend mode set to `normal`

## Test Plan

Test case specified in #2529

## Compatibility

| OS      | Implemented |
| ------- | :---------: |
| Android |          |
This commit is contained in:
Jakub Grzywacz
2024-11-12 14:37:46 +01:00
committed by GitHub
parent 38186e8283
commit d0530e4b9f

View File

@@ -20,6 +20,7 @@ export default class FeBlend extends FilterPrimitive<FeBlendProps> {
static defaultProps = {
...this.defaultPrimitiveProps,
mode: 'normal',
};
render() {