ImageFilter - React filter component.
Unfortunately CSS filters don't work in IE and Edge. This is React component that used SVG filters instead, and it works in all modern browsers plus IE10+ and Edge For props and presets check the detailed documentation on GitHub.
Change feColorMatrix
values by using sliders.
const filter = [
1, 0, 0, 0, 0,
0, 1, 0, 0, 0,
0, 0, 1, 0, 0,
0, 0, 0, 1, 0,
];