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