react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 990 B
JavaScript
import * as React from 'react';
export function SvgJoget(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 11 0 .403-.024.8-.066 1.191-2.522-.002-9.46.042-11.98-.023-3.082-.069-4.535-1.155-3.243-2.666 1.28-1.523 2.515-2.273 3.496-2.861.992-.577 1.477-1.835-1.338-1.616-5.504.374-7.806 3.415-8.863 5.842C5.078 9.864 9.98 5 16 5zm5.582 7c-.993 0-2.665 1.42-4.107 2.354-1.742 1.142-3.623 1.742-3.623 1.742l9.404-.092 2.732-1.34s.197-.53-1.06-.853c-1.258-.335-3.311.658-4.961 1.546-1.65.877-1.719.45-1.719.45s2.583-1.937 3.16-2.295c.59-.357 1.777-.774.75-1.362a1.162 1.162 0 00-.576-.15zm4.51 8.367C24.398 24.265 20.513 27 16 27a11 11 0 01-2.05-.2c-.384-.631-.754-1.293-.913-1.66-.334-.772-1.568-2.573 1.8-3.796 2.695-.975 8.751-.952 11.255-.977z" })));
}
export default SvgJoget;