react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 691 B
JSX
import React, { Component } from 'react';
export default class PlayProtectedContentIcon 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-play-protected-content-icon ${this.props.className}`}><path d="M2 5v13h9v-2H4V7h13v4h2V5H2zm7 4v5l3.5-2.5L9 9zm12.035 2.672l-4.95 4.95-2.12-2.122-1.414 1.414 3.535 3.535 6.363-6.363-1.414-1.414z"/></svg>
)
}
}