Want to show an avatar or other icons next to Quickfind records? Now you can!
Take a look at the following example: all we have to do is add an icon property for our record array.
const cereals = [
{
label: 'Trix',
value: 'trix',
icon: 'π°',
},
{
label: 'Lucky Charms',
value: 'luckyCharms',
icon: 'π',
},
{
label: 'Cookie Crisp',
value: 'cookieCrisp',
icon: 'πͺ',
}
];
window.CommandBar.addContext("cereals", cereals);
How can I turn this on? π
Set the icon property for records in context as illustrated above.