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