UNPKG

@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.

16 lines (11 loc) 447 B
// Type definitions for @kiwicom/orbit-components // Project: http://github.com/kiwicom/orbit import * as React from "react"; declare module "@kiwicom/orbit-components/lib/deprecated/TileExpandalbe"; interface Props { readonly expanded?: boolean; readonly initialExpanded?: boolean; readonly children: React.ReactNode; } declare const TileExpandalbe: React.FunctionComponent<Props>; export { TileExpandalbe, TileExpandalbe as default };