Files
react-native-svg/apple/ViewManagers/RNSVGFeBlendManager.mm
Jakub Grzywacz 096fdc22a5 feat: FeBlend (#2489)
# Summary

Continuation of #2362 implementing `FeBlend` filter
https://www.w3.org/TR/SVG11/filters.html#feBlendElement

## Test Plan

Example app → Filters → `FeBlend`

## Compatibility

| OS      | Implemented |
| ------- | :---------: |
| iOS     |          |
| macOS   |     _*_      |
| Android |          |
| Web     |          |
2024-10-16 11:45:44 +02:00

19 lines
333 B
Plaintext

#import "RNSVGFeBlendManager.h"
#import "RNSVGBlendMode.h"
#import "RNSVGFeBlend.h"
@implementation RNSVGFeBlendManager
RCT_EXPORT_MODULE()
- (RNSVGFeBlend *)node
{
return [RNSVGFeBlend new];
}
RCT_EXPORT_VIEW_PROPERTY(in1, NSString)
RCT_EXPORT_VIEW_PROPERTY(in2, NSString)
RCT_EXPORT_VIEW_PROPERTY(mode, RNSVGBlendMode)
@end