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 (15 loc) 684 B
import * as React from "react"; import type * as Common from "../../../common/types"; interface Props extends Common.Globals { initialExpanded: boolean; noPadding: boolean; onClick?: Common.Event<React.SyntheticEvent<HTMLDivElement> | React.KeyboardEvent<HTMLDivElement>>; title?: React.ReactNode; description?: React.ReactNode; header?: React.ReactNode; expanded?: boolean; icon?: React.ReactNode; htmlTitle?: string; } declare const TileExpandable: ({ initialExpanded, noPadding, children, onClick, title, expanded, description, header, icon, dataTest, htmlTitle, }: React.PropsWithChildren<Props>) => JSX.Element; export default TileExpandable;