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