UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

6 lines 398 B
import { jsx as _jsx } from "react/jsx-runtime"; import { ScreenReaderOnlyStyled } from './screenReaderOnly.styled'; export const ScreenReaderOnly = ({ children, as, id, ariaLive, dataTestId = 'screen-reader', }) => { return (_jsx(ScreenReaderOnlyStyled, { "aria-live": ariaLive, as: as, "data-testid": dataTestId, id: id, children: children })); }; //# sourceMappingURL=screenReaderOnly.js.map