Wrap texts around images in sidebar

Hi there! :wave:
Is there a way to wrap or inline texts around images in the sidebar? Something like the code below does not work.

    show_topic = st.sidebar.beta_expander("Images + Texts", False)
    if show_topic:
        c1, c2 = show_topic.beta_columns(2)
        with c1:
            show_topic.image(my_image, width=60)
        with c2:
            show_topic.write('Description of image')

Is beta_columns() not supported or I am not implementing this correctly? Thanks!