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