c4f8f4eab0
* MP-1757: implemented the WalletProvider and connect buttons * tidy: tidy up the search * MP-1691: moved modals outside of the DOM * MP-1691: changed CreditManager into AccountDetails * fix: fixed the naming * MP-1691: UX approvements * MP-1691: global confirm and delete modal added * fix: merged the credit-account and wallet branch * MP-1757: added the status store * fix: updated the store interaction * MP-1757: major cleanup of stores * tidy: format
15 lines
518 B
TypeScript
15 lines
518 B
TypeScript
import SearchIcon from 'components/Icons/search.svg'
|
|
const SearchInput = () => (
|
|
<div className='relative mt-[1px] py-2 text-white'>
|
|
<span className='absolute top-1/2 left-0 flex h-6 w-8 -translate-y-1/2 items-center pl-2'>
|
|
<SearchIcon />
|
|
</span>
|
|
<input
|
|
className='w-[280px] rounded-md border border-white/20 bg-black/30 py-2 pl-10 text-sm text-white placeholder:text-white/40 focus:border-white/60 focus:outline-none'
|
|
placeholder='Search'
|
|
/>
|
|
</div>
|
|
)
|
|
|
|
export default SearchInput
|