@cmk/fe_utils
Version:
frontend utility library
9 lines (8 loc) • 342 B
TypeScript
export type ExpandIconProps = {
nodeId: string;
toggleExpand: (nodeId: string, e: any) => void;
expandAllChildren?: (nodeId: string) => void;
collapseAllChildren?: (nodeId: string) => void;
forCollapedIcon?: boolean;
};
export declare const ExpandIcon: (props: ExpandIconProps) => import("react/jsx-runtime").JSX.Element;