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
2019-11-16 14:06:03 +01:00

17 lines
322 B
TypeScript

import React from 'react'
import styles from './SearchButton.module.scss'
import Icon from '../../atoms/Icon'
const SearchButton = (props: any) => (
<button
type="button"
title="Search"
className={styles.searchButton}
{...props}
>
<Icon name="Search" />
</button>
)
export default SearchButton