0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added search icon to search bar

This commit is contained in:
Sanne de Vries 2022-07-05 11:35:41 +02:00
parent 791971c6fd
commit 4a65cc6833

View file

@ -1,6 +1,7 @@
import Frame from './Frame';
import AppContext from '../AppContext';
import {getFrameStyles} from './Frame.styles';
import {ReactComponent as SearchIcon} from '../icons/search.svg';
const React = require('react');
@ -93,7 +94,10 @@ function Search() {
<>
<div className={'gh-portal-popup-wrapper'}>
<div className={containerClassName} style={{}}>
Search posts, tags, and authors
<div>
<SearchIcon alt='Search' />
Search posts, tags, and authors
</div>
</div>
</div>
</>