1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

Merge branch 'master' into filter-tags-and-folders

# Conflicts:
#	browser/main/SideNav/index.js
This commit is contained in:
amedora
2020-02-05 11:13:28 +09:00
197 changed files with 9275 additions and 5578 deletions

View File

@@ -5,10 +5,14 @@ import styles from './SearchButton.styl'
import i18n from 'browser/lib/i18n'
const SearchButton = ({ onClick, isActive }) => (
<button styleName='top-menu-search' onClick={(e) => onClick(e)}>
<button styleName='top-menu-search' onClick={e => onClick(e)}>
<img
styleName='icon-search'
src={isActive ? '../resources/icon/icon-search-active.svg' : '../resources/icon/icon-search.svg'}
src={
isActive
? '../resources/icon/icon-search-active.svg'
: '../resources/icon/icon-search.svg'
}
/>
<span styleName='tooltip'>{i18n.__('Search')}</span>
</button>