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