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