react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 952 B
JSX
import React, { Component } from 'react';
export default class MovieRollIcon 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-movie-roll-icon ${this.props.className}`}><path d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.398 9.527a2.5 2.5 0 1 0 4.755 1.545 2.5 2.5 0 0 0-4.755-1.545zm15.207-.005a2.5 2.5 0 1 0-4.755 1.545 2.5 2.5 0 0 0 4.755-1.545zm-12.3 8.942a2.5 2.5 0 1 0 2.94-4.045 2.5 2.5 0 0 0-2.94 4.045zm9.399-.003a2.5 2.5 0 1 0-2.939-4.045 2.5 2.5 0 0 0 2.939 4.045zM12 10.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/></svg>
)
}
}