secret/components/SearchButton.js
2023-09-10 15:14:15 +05:30

9 lines
303 B
JavaScript
Executable file

export default function SearchButton() {
return (
<button
type='submit'
className='text-capitalize flex items-center justify-center rounded-md bg-app-greyish-blue py-2 px-3 text-xs text-app-pure-white hover:bg-app-pure-white hover:text-app-dark-blue'>
Search
</button>
)
}