import * as React from "react";
const SvgComponent = props => <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="currentColor" fill="none" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}><path fillRule="evenodd" d="M16.85 7.05a7 7 0 0 0-9.9 0L4.829 9.172c-1.334 1.333-2 2-2 2.828 0 .828.666 1.495 2 2.828l2.12 2.122a7 7 0 0 0 9.9 0l2.122-2.122c1.333-1.333 2-2 2-2.828 0-.828-.667-1.495-2-2.828L16.849 7.05ZM12 8.75a3.25 3.25 0 1 0 0 6.5 3.25 3.25 0 0 0 0-6.5Z" clipRule="evenodd" opacity={0.1} stroke="none" fill="currentColor" /><path d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" /><path d="M6.95 7.05a7 7 0 0 1 9.9 0l2.12 2.122c1.334 1.333 2 2 2 2.828 0 .828-.666 1.495-2 2.828l-2.12 2.122a7 7 0 0 1-9.9 0l-2.122-2.122c-1.333-1.333-2-2-2-2.828 0-.828.667-1.495 2-2.828L6.95 7.05Z" /></svg>;
export default SvgComponent;