Instead of using a built in component, why not build a custom one? Create a new MXML Component, give it a Group superclass. Then just create exactly what you want.
Should look something like this in the end.
<s:Group width="200" height="50">
<s:Image id="image" source="blah" left="0" right="0"/>
<s:Label id="label" text="Blah some more" verticalCenter="0" horizontalCenter="0" />
</s:Group>
That is obviously fairly simplistic, but you get the idea. You can expand upon it with ease. You can add a click event to the base Group, you can add more items within it. And, best yet, you can reuse it all you like. Alternatively, you can just throw that code right into your current class/component and be done with it. The built-in components are great, but sometimes it truly is just easier to build a custom one yourself.