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