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