mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-17 13:03:50 +00:00
Created more components for the short URLs list
This commit is contained in:
15
src/short-urls/SearchBar.js
Normal file
15
src/short-urls/SearchBar.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import React from 'react';
|
||||
import searchIcon from '@fortawesome/fontawesome-free-solid/faSearch';
|
||||
import FontAwesomeIcon from '@fortawesome/react-fontawesome';
|
||||
import './SearchBar.scss';
|
||||
|
||||
export default class SearchBar extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<div className="search-bar">
|
||||
<input type="text" className="form-control form-control-lg search-bar__input" placeholder="Search..." />
|
||||
<FontAwesomeIcon icon={searchIcon} className="search-bar__icon" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user