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