1
0
mirror of https://github.com/kremalicious/blog.git synced 2025-02-14 21:10:25 +01:00
blog/src/components/molecules/Search/SearchButton.tsx

17 lines
362 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