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

17 lines
322 B
TypeScript
Raw Normal View History

2018-08-28 23:28:42 +02:00
import React from 'react'
import styles from './SearchButton.module.scss'
2019-11-15 22:10:53 +01:00
import Icon from '../../atoms/Icon'
2018-08-28 23:28:42 +02:00
2019-10-02 13:35:50 +02:00
const SearchButton = (props: any) => (
2018-09-27 21:33:25 +02:00
<button
type="button"
title="Search"
className={styles.searchButton}
{...props}
>
2019-11-15 22:10:53 +01:00
<Icon name="Search" />
2018-08-28 23:28:42 +02:00
</button>
)
export default SearchButton