Should we use `{{url("theme://"}}` or {{theme_url}}

Hi, I was wondering is there a difference between:

<img src="{{ url("theme://" ~ 'statics/img/design/travel.jpg') }}" >

and

<img src="{{ theme_url }}/statics/img/design/travel.jpg" >

They both find the image path and both have exactly the same path, in absolute, from the server root.

Thank you,
Sebastien

theme_url is a shortcut to url("theme://"), so you can use both as you prefer.

thank you