xxxxxxxxxx
Copied to clipboard
import * as React from 'react';
private renderCustomTreeItem(item: ITreeItem): JSX.Element {
return (
<span>
{
item.iconProps &&
<i className={"ms-Icon ms-Icon--" + item.iconProps.iconName} style={{ paddingRight: '4px' }} />
}
{item.label}
</span>
);
}