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