@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
12 lines (11 loc) • 326 B
TypeScript
import * as React from "react";
interface Props {
noPadding: boolean;
withPointer?: boolean;
withBorder?: boolean;
useMargins?: boolean;
}
declare const TileContent: React.ForwardRefExoticComponent<Props & {
children?: React.ReactNode;
} & React.RefAttributes<HTMLDivElement>>;
export default TileContent;