Hello,
I haven't worked with office UI or react but Somehow managed to create a button, but it's aligned to left, I need it to be right-aligned.

Below is the react code.
render() {
var emojiIcon: IIconProps = { iconName: 'DoubleChevronRight', };
emojiIcon.style={float:'right',color:'#000000'};
return (
<IconButton iconProps={emojiIcon} title="Next" ariaLabel="Next"onClick={(e) => {
this.props.onChange(true)
}} />
);
}
No CSS files used, Can someone advise, please?
Many Thanks.
Nijo