UNPKG

@uppy/webcam

Version:

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

8 lines (7 loc) 354 B
import { jsx as _jsx } from "preact/jsx-runtime"; import { h } from 'preact'; import formatSeconds from './formatSeconds.js'; export default function RecordingLength({ recordingLengthSeconds, }) { const formattedRecordingLengthSeconds = formatSeconds(recordingLengthSeconds); return _jsx("span", { children: formattedRecordingLengthSeconds }); }