Fix icon for link demo

old
Javi Velasco 2015-12-20 18:48:17 +01:00
parent b037994375
commit 086a0ae15d
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import Link from 'react-toolbox/lib/link';
const LinksTest = () => (
<nav>
<Link href="/#/components/link" label="Work" count={4} icon='business' />
<Link href="/#/components/link" label="Blog" icon='speaker-notes' />
<Link href="/#/components/link" label="Blog" icon='speaker_notes' />
<Link href="/#/components/link" label="Explore" icon='explore' />
</nav>
);

View File

@ -1,7 +1,7 @@
const LinksTest = () => (
<nav>
<Link href="#/components/link" label="Work" count={4} icon='business' />
<Link href="#/components/link" label="Blog" icon='speaker-notes' />
<Link href="#/components/link" label="Blog" icon='speaker_notes' />
<Link href="#/components/link" label="Explore" icon='explore' />
</nav>
);