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) 415 B
/// <reference types="react" /> import Tab from "./components/Tab"; import TabPanel from "./components/TabPanel"; import TabPanels from "./components/TabPanels"; import TabList from "./components/TabList"; import type { Props } from "./types"; declare const Tabs: ({ children, spacing, dataTest, defaultSelected, onChange }: Props) => JSX.Element; export default Tabs; export { Tab, TabPanel, TabPanels, TabList };