Export Code
high/IconContainer.js
export const IconContainer = ({
children,
width,
height,
performance,
}) => {
return (
<svg width={width} height={height}>
<defs>
<marker
id="markerCircleHigh"
markerWidth="5"
markerHeight="5"
refX="3"
refY="3"
>
<circle cx="3" cy="3" r="1.75" fill="lightgrey" />
</marker>
<marker
id="markerCircleHighlight"
markerWidth="5"
markerHeight="5"
refX="3"
refY="3"
>
<circle
cx="3"
cy="3"
r="1.75"
fill={
performance === 'concern'
? 'darkorange'
: 'dodgerblue'
}
/>
</marker>

SPC Icons

Adil Zeshan

Last edited Dec 21, 2020
Created on Dec 09, 2020
Forked from React Starter

Statistical Process Control (SPC) Icons

MIT Licensed