carbon-react
Version:
A library of reusable React components for easily building user interfaces.
11 lines (10 loc) • 392 B
TypeScript
import { TileContentProps } from "./tile-content.component";
interface StyledTileContentProps extends TileContentProps {
isHorizontal?: boolean;
width?: string | number;
height?: string | number;
}
declare const StyledTileContent: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledTileContentProps, "theme">;
export default StyledTileContent;