import { Badge, Box, Text, as, toRem } from 'folds'; import React from 'react'; import { mimeTypeToExt } from '../../utils/mimeTypes'; const badgeStyles = { maxWidth: toRem(100) }; export type FileHeaderProps = { body: string; mimeType: string; }; export const FileHeader = as<'div', FileHeaderProps>(({ body, mimeType, ...props }, ref) => ( {mimeTypeToExt(mimeType)} {body} ));