import { memo } from "react"; export interface SrOnlyProps { children: string; } /** * Component to display text that is only visible for screen readers * * Ref: https://webaim.org/techniques/css/invisiblecontent/ */ export default memo(function SrOnly({ children }: SrOnlyProps) { return ( {children} ); });