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