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