interface ReaderIconProps { className?: string; height?: number; viewBox?: string; width?: number; } export default function ReaderIcon( props: ReaderIconProps ): JSX.Element { const { className, height = 11, viewBox = '0 0 24 11', width = 24 } = props; return ( ); }