carbon-react
Version:
A library of reusable React components for easily building user interfaces.
16 lines (15 loc) • 744 B
TypeScript
import React from "react";
import { SpaceProps, GridProps } from "styled-system";
import { TagProps } from "../../../__internal__/utils/helpers/tags/tags";
/**
* @deprecated `GridContainer` has been deprecated. See the Carbon documentation for migration details.
*/
export interface GridContainerProps extends SpaceProps, GridProps, React.HTMLAttributes<HTMLDivElement>, TagProps {
/** Defines the Components to be rendered within the GridContainer. Requires GridItemProps */
children?: React.ReactNode;
}
/**
* @deprecated `GridContainer` has been deprecated. See the Carbon documentation for migration details.
*/
export declare const GridContainer: (props: GridContainerProps) => React.JSX.Element;
export default GridContainer;