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="M12.5 11.5 21 3M8.5 10a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11ZM15.5 8.5 17 10a1.414 1.414 0 0 0 2 0l1-1a1.414 1.414 0 0 0 0-2l-1.5-1.5" /></svg>;
export default SvgComponent;