(props)
| 4 | |
| 5 | |
| 6 | const SearchButton = (props) => { |
| 7 | return ( |
| 8 | <button |
| 9 | type="submit" |
| 10 | className="text-white bg-blue-600 focus:ring-2 focus:ring-blue-300 focus:outline-none inline-flex items-center rounded-md px-4 py-2 text-sm font-medium shadow-sm hover:bg-blue-700 ml-3" |
| 11 | > |
| 12 | <span className="hidden md:block">Search</span> |
| 13 | <AiOutlineSearch className="md:hidden" /> |
| 14 | </button> |
| 15 | ) |
| 16 | } |
| 17 | |
| 18 | const SearchBar = (props) => { |
| 19 | const { |
nothing calls this directly
no outgoing calls
no test coverage detected