UNPKG

rsuite

Version:

A suite of react components

12 lines (11 loc) 562 B
import { ComponentProps } from '../internals/utils'; export type ContentProps = ComponentProps; /** * The Content component is used to wrap content in a themed container with a max-width. * @see https://rsuitejs.com/components/container/ * * For Internet Explorer 11 and lower, it's suggested that an ARIA role of "main" * be added to the <main> element to ensure it is accessible */ declare const Content: import("../internals/types").InternalRefForwardingComponent<"main", Partial<ComponentProps>, never> & Record<string, never>; export default Content;