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="M17 14a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM7 21a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM7 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z" opacity={0.1} stroke="none" fill="currentColor" /><path d="M21 5H9M5 5H3M21 12h-2M5 19H3M15 12H3M21 19H9M17 14a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM7 21a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM7 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z" /></svg>;
export default SvgComponent;