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 d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM12 5V3M17 7l2-2M19 12h2M17 17l2 2M12 19v2M7 17l-2 2M5 12H3M5 5l2 2" /></svg>;
export default SvgComponent;