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