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