Skip to content

Commit

Permalink
fix: add default FeBlend mode (#2530)
Browse files Browse the repository at this point in the history
# Summary

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

## Test Plan

Test case specified in #2529

## Compatibility

| OS      | Implemented |
| ------- | :---------: |
| Android |    ✅      |
  • Loading branch information
jakex7 authored Nov 12, 2024
1 parent 38186e8 commit d0530e4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/elements/filters/FeBlend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export default class FeBlend extends FilterPrimitive<FeBlendProps> {

static defaultProps = {
...this.defaultPrimitiveProps,
mode: 'normal',
};

render() {
Expand Down

0 comments on commit d0530e4

Please sign in to comment.