react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 920 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdMovieCreation extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m30 6.640000000000001h6.640000000000001v23.36q0 1.3283333333333331-0.9766666666666666 2.3433333333333337t-2.3049999999999997 1.0166666666666657h-26.71666666666667q-1.3299999999999992 0-2.3066666666666658-1.0166666666666657t-0.9749999999999996-2.3433333333333337v-20q0-1.3283333333333331 0.9766666666666666-2.3433333333333337t2.3066666666666666-1.0166666666666666h1.716666666666666l3.283333333333333 6.72h4.999999999999998l-3.283333333333333-6.716666666666668h3.283333333333333l3.356666666666669 6.7150000000000025h5l-3.3599999999999994-6.716666666666668h3.3599999999999994l3.3599999999999994 6.716666666666668h5z"/></g>
</IconBase>
);
}
}