Created
July 3, 2020 11:28
-
-
Save mrcthms/177a3d855f1be0115ec47436ecaacf4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.wrapper { | |
height: 36px; | |
width: 100%; | |
position: relative; | |
} | |
.inner { | |
position: absolute; | |
right: 0; | |
top: 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { Search } from '@invisionapp/helios' | |
function RightAlignedSearch(props) { | |
return ( | |
<div className="wrapper"> | |
<div className="inner"> | |
<Search {...props} /> | |
</div> | |
</div> | |
) | |
} | |
export default RightAlignedSearch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment