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