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