1.0.5 • Published 3 years ago

@kebian/material-design-icons v1.0.5

Weekly downloads
12
License
MIT
Repository
github
Last release
3 years ago

material-design-icons

An npm package for self-hosting Google's Material Design Icons.

Fonts are pulled from Google's git repository and then used to generate the missing eot, woff and woff2 files.

Also exports icon and category lists.

Example Sass Usage

@import '@kebian/material-design-icons/scss/material-design-icons';

Example JS usage

import { icons } from '@kebian/material-design-icons'

icons.forEach(icon => console.log('Icon name: ' + icon))
import { twotone, categories } from '@kebian/material-design-icons'

categories.forEach(category => {
    category.icons.forEach(icon => {
        if (twotone.includes(icon)) {
            console.log(`Category ${category.name} has a twotone ${icon} icon`)
        }
    })
})
1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago