The style attribute in React expect the value to be an object, ie Key value pair.
style = {}
will have another object inside it like {float:'right'}
to make it work.
<span style={{float:'right'}}>{'Download Audit'}</span>
Hope this solves the problem