rsuite
Version:
A suite of react components
12 lines (11 loc) • 516 B
TypeScript
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").RsRefForwardingComponent<"main", ComponentProps>;
export default Content;