@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.
12 lines • 344 B
JavaScript
import * as React from "react";
import cx from "clsx";
const TextWrapper = ({
active,
children
}) => {
return /*#__PURE__*/React.createElement("div", {
className: cx("de:min-h-400", active ? "[&>p]:text-ink-dark" : "[&>p]:text-ink-light"),
"aria-current": active ? "step" : undefined
}, children);
};
export default TextWrapper;