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