react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 853 B
JSX
import React, { Component } from 'react';
export default class CameraPartyModeIcon 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-camera-party-mode-icon ${this.props.className}`}><path d="M12 16.998c-1.63 0-3.065-.792-3.979-2H12a3 3 0 0 0 3-3c0-.353-.072-.686-.184-1h2.083a5 5 0 0 1-4.899 6zm0-10c1.63 0 3.063.792 3.977 2H12a3 3 0 0 0-3 3c0 .353.072.686.184 1H7.1a5 5 0 0 1 4.899-6zm8-3h-3.173l-1.828-2H9l-1.828 2H4a2 2 0 0 0-2 2v12c0 1.104.896 2 2 2h16c1.104 0 2-.896 2-2v-12a2 2 0 0 0-2-2z"/></svg>
)
}
}