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

12 lines
285 B
JavaScript

import React from 'react'
import SearchIcon from '../svg/MagnifyingGlass'
import styles from './SearchButton.module.scss'
const SearchButton = props => (
<button type="button" className={styles.searchButton} {...props}>
<SearchIcon />
</button>
)
export default SearchButton