import * as React from 'react'; export interface FileImage64Props extends React.SVGProps { ariaLabel?: string } export default function FileImage64({ ariaLabel, ...props }: FileImage64Props) { return ( ); }