Toolbar: refactor from IconSearch and add 'size' and 'color' controls

This commit is contained in:
Tobias Fried
2020-07-17 13:23:04 -04:00
parent cf807f789d
commit 44ac4455b7
3 changed files with 4 additions and 42 deletions

View File

@@ -1,13 +1,12 @@
import React from "react";
import { IconSearch, IconGrid } from "../";
import { Toolbar, IconGrid } from "../";
const App = () => {
return (
<div>
<header>
Phosphor Icons{" "}
<h1>Phosphor Icons</h1>
<a
// className="App-link"
href="https://play.google.com/store/apps/details?id=com.tobiasfried.phosphor"
target="_blank"
rel="noopener noreferrer"
@@ -15,7 +14,7 @@ const App = () => {
on the play store
</a>
</header>
<IconSearch />
<Toolbar />
<IconGrid />
</div>
);