carbon-react
Version:
A library of reusable React components for easily building user interfaces.
10 lines (9 loc) • 448 B
TypeScript
import React from "react";
import { BoxProps } from "../../box";
import { TagProps } from "../../../__internal__/utils/helpers/tags";
export interface FlexTileCellProps extends TagProps, BoxProps {
/** The content to render within the responsive cell. */
children: React.ReactNode;
}
export declare const FlexTileCell: ({ children, flexGrow, flexBasis, flexShrink, ...rest }: FlexTileCellProps) => JSX.Element;
export default FlexTileCell;