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