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