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