@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.
13 lines (12 loc) • 398 B
TypeScript
import * as React from "react";
interface Props {
expandable: boolean;
expanded?: boolean;
children?: React.ReactNode;
noSeparator?: boolean;
hasPaddingTop: boolean;
slideID: string;
labelID: string;
}
declare const SectionContent: ({ expandable, expanded, children, noSeparator, hasPaddingTop, slideID, labelID, }: Props) => JSX.Element;
export default SectionContent;