carbon-react
Version:
A library of reusable React components for easily building user interfaces.
11 lines (10 loc) • 439 B
TypeScript
import React from "react";
import { SpaceProps } from "styled-system";
import { TagProps } from "../../../__internal__/utils/helpers/tags";
export interface TileContentProps extends SpaceProps, TagProps {
children?: React.ReactNode;
width?: string | number;
height?: string | number;
}
declare const TileContent: ({ children, width, height, ...rest }: TileContentProps) => React.JSX.Element | null;
export default TileContent;