@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.
14 lines • 638 B
TypeScript
import React from "react";
import type * as Common from "../../../common/types";
interface Props extends Common.Globals {
readonly children: React.ReactNode;
readonly expanded: boolean;
readonly expandable: boolean;
readonly expandOnTileClick?: boolean;
readonly onExpand?: Common.Callback;
readonly actions?: React.ReactNode;
readonly ariaControls?: string;
}
declare const AccordionSectionHeader: ({ children, actions, expanded, expandOnTileClick, onExpand, expandable, dataTest, ariaControls, }: Props) => React.JSX.Element;
export default AccordionSectionHeader;
//# sourceMappingURL=SectionHeader.d.ts.map