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