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