@kadoui/react
Version:
Kadoui primitive components for React
8 lines • 392 B
TypeScript
import { Dispatch, PropsWithChildren, SetStateAction } from "react";
export type SwapRootPropsT = PropsWithChildren & {
keys: string[];
activeKey: string;
setActiveKey: Dispatch<SetStateAction<string>>;
};
export declare function SwapRoot({ keys, activeKey, setActiveKey, children }: SwapRootPropsT): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=SwapRoot.d.ts.map