react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 573 B
JavaScript
import * as React from 'react';
export function SvgCloudsmith(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M18.854 3c-2.41 0-4.563 1.95-4.563 4.35 0 2.41-1.531 3.941-3.941 3.941-2.4 0-4.35 2.152-4.35 4.563C6 18.264 7.95 20 10.35 20c2.41 0 4.357-1.734 4.357-4.145 0-2.41 1.737-4.146 4.147-4.146 2.4 0 4.146-1.95 4.146-4.36C23 4.952 21.254 3 18.854 3zm.652 17a4.501 4.501 0 10-.01 9.002 4.501 4.501 0 00.01-9.002z" })));
}
export default SvgCloudsmith;