1
0
mirror of https://github.com/kremalicious/blog.git synced 2025-02-14 21:10:25 +01:00
blog/src/components/atoms/SearchButton.jsx
2018-09-27 22:25:00 +02:00

17 lines
352 B
JavaScript

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