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="M4.5 10a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM4.5 17a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z" opacity={0.1} stroke="none" fill="currentColor" /><path d="M21 7H10M17 10h-7M21 14H10M17 17h-7M4.5 10a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3ZM4.5 17a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z" /></svg>;
export default SvgComponent;