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