react-icon-library
Version:
A library of SVG icons for use in reactJS projects
14 lines • 1.11 kB
JavaScript
import React from 'react';
export default function Cog(props) {
return (<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} {...props}>
<defs>
<style dangerouslySetInnerHTML={{
__html: '.a{fill:none;stroke:#000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px;}',
}}/>
</defs>
<title>cog</title>
<path className="a" d="M10.545,2.438a1.959,1.959,0,0,0,2.908,0l.94-1.042A1.959,1.959,0,0,1,17.8,2.809l-.072,1.4a1.961,1.961,0,0,0,2.057,2.057l1.4-.072A1.959,1.959,0,0,1,22.6,9.606l-1.042.94a1.959,1.959,0,0,0,0,2.908l1.042.94a1.959,1.959,0,0,1-1.413,3.411l-1.4-.072a1.96,1.96,0,0,0-2.057,2.057l.072,1.4A1.959,1.959,0,0,1,14.393,22.6l-.94-1.042a1.959,1.959,0,0,0-2.908,0L9.605,22.6a1.959,1.959,0,0,1-3.411-1.413l.072-1.4A1.958,1.958,0,0,0,4.21,17.733l-1.4.072A1.959,1.959,0,0,1,1.4,14.394l1.041-.94a1.959,1.959,0,0,0,0-2.908L1.4,9.606A1.959,1.959,0,0,1,2.808,6.2l1.4.072A1.96,1.96,0,0,0,6.266,4.21l-.072-1.4A1.959,1.959,0,0,1,9.605,1.4Z"/>
<circle className="a" cx="11.999" cy={12} r="4.5"/>
</svg>);
}
//# sourceMappingURL=Cog.js.map