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