react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 653 B
JavaScript
import * as React from 'react';
export function SvgCloudscale(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M16 3C8.832 3 3 8.832 3 16s5.832 13 13 13 13-5.832 13-13S23.168 3 16 3zm0 2c6.065 0 11 4.935 11 11s-4.935 11-11 11S5 22.065 5 16 9.935 5 16 5zm0 4a7 7 0 00-6.967 7.666C9.207 14.063 11.353 12 14 12c1.31 0 2.487.515 3.375 1.342l-.863.732A2.008 2.008 0 0016 14a2 2 0 102 2c0-.178-.031-.348-.074-.512l3.928-4.634A.501.501 0 0021.5 10a.501.501 0 00-.354.146l-.615.522A6.971 6.971 0 0016 9z" })));
}
export default SvgCloudscale;