Tree 组件支持传入svg 图标

This commit is contained in:
zhangxulong 2022-07-11 19:32:08 +08:00 committed by RUNZE LU
parent ca9e7f8a55
commit 3b4c4cea73

View File

@ -956,6 +956,8 @@ export class TreeSelector extends React.Component<
>
{getIcon(iconValue) ? (
<Icon icon={iconValue} className="icon" />
) : React.isValidElement(iconValue) ? (
iconValue
) : (
<i className={iconValue}></i>
)}