@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.
11 lines • 530 B
JavaScript
import React from "react";
const AccordionSectionFooter = ({
children,
dataTest
}) => /*#__PURE__*/React.createElement("div", {
// the border-radius is calculated based on the border-radius and border-width of the AccordionSection component
// outer border-radius is 4px, border-width is 1px so inner border-radius is 4px - 1px = 3px
className: "p-600 bg-white-normal shadow-level2 sticky bottom-0 flex rounded-b-[3px]",
"data-test": dataTest && `${dataTest}Footer`
}, children);
export default AccordionSectionFooter;