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