uppy/src/plugins/Webcam/RecordStopIcon.js
Renée Kooi 93d3606c4a Implement reading audio+video from Webcam. (#175)
* webcam: Add options to select whether video/audio should be recorded.

* webcam: add audio/video stream capture.

* webcam: Make sure querySelector for `video` element always picks our current element.

* webcam: Add buttons to control video recording.

* webcam: Pull `Recording` status into State object.

* webcam: Only show recording buttons if `MediaRecorder` is available.

* webcam: Add `modes` list option to determine whether video/audio should be recorded.
2017-04-28 12:50:34 +02:00

7 lines
207 B
JavaScript

const html = require('yo-yo')
module.exports = (props) => {
return html`<svg class="UppyIcon" width="100" height="100" viewBox="0 0 100 100">
<rect x="15" y="15" width="70" height="70" />
</svg>`
}