const diameterPx = `${props.radius * 2}px`; return ( <div style={{ width: diameterPx, height: diameterPx, borderRadius: "100%", backgroundColor: props.color, }} > <i className={`bi-${props.icon}`} style={{ color: "white" }} /> </div> );