Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSeamau5 committed Jun 25, 2015
0 parents commit 16a3590
Show file tree
Hide file tree
Showing 18 changed files with 6,097 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
@@ -0,0 +1,17 @@
# Material Icons for Elm

This library offers access to all of [Google's Material icons](https://www.google.com/design/icons/) in elm-svg.

All icons functions expect a color and a size, which is used as both the width and the height of the icon.

*Note: The icons are grouped in submodules mirroring the grouping of the icons by the material design folks [in this page](https://www.google.com/design/icons/).*

So, if you want to use some icons, first go to the [google design icons page](https://www.google.com/design/icons/), find the icons you want to use, then search them in this package. Finding them is very simple as naming is respected and spaces are changed to underscores.

For example :

`account balance` in the Action category can be imported as

```elm
import Material.Icons.Action exposing (account_balance)
```
32 changes: 32 additions & 0 deletions elm-package.json
@@ -0,0 +1,32 @@
{
"version": "1.0.0",
"summary": "Material Icons Library",
"repository": "https://github.com/USER/PROJECT.git",
"license": "BSD3",
"source-directories": [
"src"
],
"exposed-modules": [
"Material.Icons.Action",
"Material.Icons.Alert",
"Material.Icons.AV",
"Material.Icons.Communication",
"Material.Icons.Content",
"Material.Icons.Device",
"Material.Icons.Editor",
"Material.Icons.File",
"Material.Icons.Hardware",
"Material.Icons.Image",
"Material.Icons.Maps",
"Material.Icons.Navigation",
"Material.Icons.Notification",
"Material.Icons.Social",
"Material.Icons.Toggle"
],
"dependencies": {
"elm-lang/core": "2.1.0 <= v < 3.0.0",
"evancz/elm-svg": "1.0.2 <= v < 2.0.0",
"evancz/virtual-dom": "1.2.3 <= v < 2.0.0"
},
"elm-version": "0.15.0 <= v < 0.16.0"
}

0 comments on commit 16a3590

Please sign in to comment.