import React from 'react'; import { DataFileType } from '../types'; import { Play } from 'react-feather'; type PropsType = { file: DataFileType; }; const LargePreview = ({ file: { thumbnail, type } }: PropsType): JSX.Element => { return (
{type === 'video' && (
)}
); }; export default LargePreview;