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