UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 875 B
import React, { Component } from 'react'; export default class CloudBracesIcon extends Component { static defaultProps = { className: '' }; constructor(props) { super(props); } render() { return ( <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-cloud-braces-icon ${this.props.className}`}><path d="M6 20a6 6 0 0 1-.653-11.965 7.502 7.502 0 0 1 14.006 1.977A5 5 0 0 1 19 20H6zm12.5-8H18a1 1 0 0 1-1-1v-1a2 2 0 0 0-2-2h-1.5v2H15v1a2 2 0 0 0 2 2 2 2 0 0 0-2 2v1h-1.5v2H15a2 2 0 0 0 2-2v-1a1 1 0 0 1 1-1h.5v-2zm-13 0v2H6a1 1 0 0 1 1 1v1a2 2 0 0 0 2 2h1.5v-2H9v-1a2 2 0 0 0-2-2 2 2 0 0 0 2-2v-1h1.5V8H9a2 2 0 0 0-2 2v1a1 1 0 0 1-1 1h-.5z"/></svg> ) } }