Want to display an image and Text in single line

I’m using forge UI Kit. I want to display an image icon and text in a single line. As I can’t use my own style in UI Kit. Then how can I achieve this.

Hey @ZainFareed

Thanks for getting in touch.

Forge UI Kit is designed for simple use cases, so there are fewer options for configuring how the elements are displayed. One way I was able to do what you mentioned, was using a table

        <Table>
            <Row>
            <Cell><Text>Hello World</Text></Cell>
            <Cell><Image
                src="https://media.giphy.com/media/jUwpNzg9IcyrK/source.gif"
                alt="homer"
            /></Cell>
            </Row>
        </Table>

but, if that’s not suitable for your needs you may wish to consider building a CustomUI app instead.

Cheers!
Mel