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