UNPKG

@uppy/webcam

Version:

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

14 lines 430 B
import { h } from 'preact'; import formatSeconds from './formatSeconds.js'; export default function RecordingLength(_ref) { let { recordingLengthSeconds, i18n } = _ref; const formattedRecordingLengthSeconds = formatSeconds(recordingLengthSeconds); return h("span", { "aria-label": i18n('recordingLength', { recording_length: formattedRecordingLengthSeconds }) }, formattedRecordingLengthSeconds); }