/// import { IAriaAttributes, IWithDataTestId } from "../../core/types"; import { IBox } from "../../core/types"; export interface IFile extends IAriaAttributes, Omit, IWithDataTestId { /** * Full name of file */ name: string; /** * Thumbnail */ imgSrc?: string; /** * File size, in bytes */ size?: number; /** * Provide any additional style props to wrapper */ wrapperStyles?: IBox; /** * Render function for any custom actions */ renderEnd?: () => React.ReactNode; }