README: update code example

This commit is contained in:
rektdeckard
2020-08-03 18:20:54 -04:00
parent d1f22a3dbc
commit 1a86365db1

View File

@@ -38,11 +38,11 @@ import { Smiley, Heart, Horse } from "phosphor-react";
const App = () => { const App = () => {
return ( return (
<> <div>
<Smiley /> <Smiley />
<Heart size={32} color="hotpink" weight="fill" /> <Heart size={32} color="hotpink" weight="fill" />
<Horse weight="duotone" /> <Horse weight="duotone" />
</> </div>
); );
}; };