UNPKG

@cmk/fe_utils

Version:
9 lines (8 loc) 342 B
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;