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