UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

17 lines (16 loc) 941 B
import { Component, HTMLStyledProps } from "../../core/components/index.types.js"; import "../../core/index.js"; import "../../index.js"; import * as react2597 from "react"; //#region src/components/visually-hidden/visually-hidden.d.ts interface VisuallyHiddenProps extends HTMLStyledProps<"span"> {} declare const VisuallyHiddenPropsContext: react2597.Context<Partial<VisuallyHiddenProps> | undefined>, useVisuallyHiddenPropsContext: () => Partial<VisuallyHiddenProps> | undefined; /** * `VisuallyHidden` is a common technique used in web accessibility to hide content from the visual client, but keep it readable for screen readers. * * @see https://yamada-ui.com/docs/components/visually-hidden */ declare const VisuallyHidden: Component<"span", VisuallyHiddenProps>; //#endregion export { VisuallyHidden, VisuallyHiddenProps, VisuallyHiddenPropsContext, useVisuallyHiddenPropsContext }; //# sourceMappingURL=visually-hidden.d.ts.map