// Types
import type { AnchorHTMLAttributes, ClassAttributes } from 'react';

export type FileAttributes =
  | AnchorHTMLAttributes<HTMLAnchorElement> &
      ClassAttributes<HTMLAnchorElement>;
