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