mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-31 22:11:28 +00:00
* 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.
7 lines
207 B
JavaScript
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>`
|
|
}
|