import React from 'react'; import { Box } from '@wix/design-system'; import { File } from './FileProps'; import { Thumbnail } from './Thumbnail'; import { FileDetails } from './FileDetails'; import { DownloadButton } from './DownloadButton'; export interface FileCardProps { file: File; showDownloadCTA?: boolean; showDetails?: boolean; } export const FileCard = ({ file, showDownloadCTA = false, showDetails = false, }: FileCardProps) => { // const downloadIconWidth = showDownloadCTA ? 36 : 0; return ( {showDownloadCTA && !file.private ? : null} ); };