How can I put an icon under the text in the feature? I've already tried this, but it's not working
const style = new Style({
stroke: new Stroke({
color: '#969696',
width: 2
}),
text: new Text({
font: '14px Calibri,sans-serif',
fill: new Fill({ color: '#000' }),
stroke: new Stroke({
color: '#fff',
width: 2
})
}),
image: new Icon({
src: 'https://flagcdn.com/w20/aq.png',
crossOrigin: ''
})
});