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