1
0
Fork 0

feat(fs.dev): Ported icons to one file per icon

This commit is contained in:
Joost De Cock 2021-12-27 14:30:10 +01:00
parent 788846c677
commit d0864e00c9
29 changed files with 242 additions and 147 deletions

View file

@ -0,0 +1,9 @@
/* Sourced from heroicons.com - Thanks guys! */
const Theme = () => (
<svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M7 21a4 4 0 01-4-4V5a2 2 0 012-2h4a2 2 0 012 2v12a4 4 0 01-4 4zm0 0h12a2 2 0 002-2v-4a2 2 0 00-2-2h-2.343M11 7.343l1.657-1.657a2 2 0 012.828 0l2.829 2.829a2 2 0 010 2.828l-8.486 8.485M7 17h.01" />
</svg>
)
export default Theme