react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 533 B
JavaScript
import * as React from 'react';
export function SvgSuperpowers(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M29 3L14.877 5.057l-.889.129.014.005C8.888 6.135 5 10.618 5 16c0 3.032 1.235 5.782 3.227 7.773L3 29l14.123-2.057.889-.129-.014-.005C23.112 25.865 27 21.382 27 16c0-3.033-1.235-5.782-3.227-7.773L29 3zM16 7c4.963 0 9 4.037 9 9s-4.037 9-9 9-9-4.037-9-9 4.037-9 9-9z" })));
}
export default SvgSuperpowers;