UNPKG

@uppy/webcam

Version:

Uppy plugin that takes photos or records videos using the device's camera.

16 lines 449 B
import { h } from 'preact'; import CameraIcon from "./CameraIcon.js"; export default function SnapshotButton(_ref) { let { onSnapshot, i18n } = _ref; return h("button", { className: "uppy-u-reset uppy-c-btn uppy-Webcam-button uppy-Webcam-button--picture", type: "button", title: i18n('takePicture'), "aria-label": i18n('takePicture'), onClick: onSnapshot, "data-uppy-super-focusable": true }, CameraIcon()); }