1
0
Fork 0
blog/src/components/Search/SearchButton.tsx

17 lines
359 B
TypeScript

import React from 'react'
import { ReactComponent as SearchIcon } from '../../images/magnifying-glass.svg'
import styles from './SearchButton.module.scss'
const SearchButton = (props: any) => (
<button
type="button"
title="Search"
className={styles.searchButton}
{...props}
>
<SearchIcon />
</button>
)
export default SearchButton