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