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