UNPKG

carbon-react

Version:

A library of reusable React components for easily building user interfaces.

19 lines (18 loc) 719 B
import React from "react"; import { TagProps } from "../../../__internal__/utils/helpers/tags/tags"; import { StyledGridItemProps } from "./grid-item.style"; /** * @deprecated `GridItem` has been deprecated. See the Carbon documentation for migration details. */ export interface GridItemProps extends StyledGridItemProps, React.HTMLAttributes<HTMLDivElement>, TagProps { /** Defines the Component(s) to be rendered within the GridItem */ children?: React.ReactNode; } /** * @deprecated `GridItem` has been deprecated. See the Carbon documentation for migration details. */ export declare const GridItem: { (props: GridItemProps): React.JSX.Element; displayName: string; }; export default GridItem;