How can I remove the icons or the emoji from my text string. In this example I am trying to remove the folder beside the text test folder
<List.Item
title={item.title}
left={props => (
<List.Icon
{...props}
icon={
item.Group || item.Children.length >= 1
? 'folder'
: 'layers'
}
/>
)}
right={props => (
<Button
mode="text"
labelStyle={{fontSize: 12, letterSpacing: 0.1}}
onPress={() =>
item.Group || item.Children.length >= 1
? apiDataFilter(item.title, item.UUID, true)
: apiDataFilter('', item.UUID, false)
}>
Select
</Button>
)}
/>