Options to style SDK SVG icons with custom colors and opacity.
const style: SVGIconStyleOptions = { fillColor: '#00FF00', outlineColor: '#000000', outlineOpacity: 0.5}; Copy
const style: SVGIconStyleOptions = { fillColor: '#00FF00', outlineColor: '#000000', outlineOpacity: 0.5};
Optional
The fill color to apply to the SVG icon (e.g., '#FF0000' or 'red').
The outline (stroke) color to apply to the SVG icon.
The opacity of the outline, from 0 (transparent) to 1 (opaque).
Options to style SDK SVG icons with custom colors and opacity.
Example