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