UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 819 B
import React, { Component } from 'react'; export default class ClosedCaptionIcon 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-closed-caption-icon ${this.props.className}`}><path d="M18 10.998h-1.5v-.5h-2v3h2v-.5H18v1a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1m-7 1H9.5v-.5h-2v3h2v-.5H11v1a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1m8-6H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14c1.103 0 2-.896 2-2v-12c0-1.104-.897-2-2-2z"/></svg> ) } }