Design system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
306 B

  1. import * as React from 'react';
  2. export interface CommonPreviewProps<F extends Partial<File> = Partial<File>> {
  3. file?: F;
  4. disabled?: boolean;
  5. enhanced?: boolean;
  6. mini?: boolean;
  7. }
  8. export type FilePreviewComponent<T extends CommonPreviewProps = CommonPreviewProps> = (props: T) => React.ReactNode;