()
| 64 | const size = useContextMenuSize() |
| 65 | |
| 66 | const render = () => { |
| 67 | return ( |
| 68 | <> |
| 69 | {icon && <span css={iconCls(disabled, size)}>{icon}</span>} |
| 70 | {children} |
| 71 | {rightText && <div css={rightCls(disabled, size)}>{rightText}</div>} |
| 72 | </> |
| 73 | ) |
| 74 | } |
| 75 | return ( |
| 76 | <MenuItem |
| 77 | css={itemCls(disabled, size)} |
no test coverage detected
searching dependent graphs…