// @flow import React from 'react'; type Props = { uri: string, position: ?number, duration: ?number, }; export default function ClaimPreviewProgress(props: Props) { const { position, duration } = props; if (!position || !duration) { return null; } return (