UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 791 B
import React, { Component } from 'react'; export default class CastConnectedIcon 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-cast-connected-icon ${this.props.className}`}><path d="M21 2.998H3a2 2 0 0 0-2 2v3h2v-3h18v14h-7v2h7c1.103 0 2-.896 2-2v-14c0-1.104-.897-2-2-2zm-20 7v2a9 9 0 0 1 9 9h2c0-6.075-4.927-11-11-11zm18-3H5v1.634a13.022 13.022 0 0 1 8.365 8.366H19m-18-3v2a5 5 0 0 1 5 5h2a7 7 0 0 0-7-7zm0 4v3h3a3 3 0 0 0-3-3z"/></svg> ) } }