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.

10 lines (9 loc) 265 B
import * as React from "react"; interface Props { expanded?: boolean; children?: React.ReactNode; slideID: string; labelID: string; } export default function Expandable({ expanded, children, slideID, labelID }: Props): React.JSX.Element; export {};