All Projects → TeamWertarbyte → Mdi Material Ui

TeamWertarbyte / Mdi Material Ui

Licence: wtfpl
Material-UI SvgIcon components for Material Design Icons.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Mdi Material Ui

ionicons-sprite
SVG sprite icon set based on Ionicons icons
Stars: ✭ 22 (-92.03%)
Mutual labels:  icons, svg-icons
mdn-dinocons
A scalable set of icons for use across Mozilla Developer websites
Stars: ✭ 21 (-92.39%)
Mutual labels:  icons, svg-icons
svelte-simple-icons
📦 This package provides the Simple Icons packaged as a set of Svelte components.
Stars: ✭ 27 (-90.22%)
Mutual labels:  icons, svg-icons
Android Switchicon
Google launcher-style implementation of switch (enable/disable) icon
Stars: ✭ 2,337 (+746.74%)
Mutual labels:  material-ui, icons
icons-flat-osx
Free Flat icons For OSX
Stars: ✭ 371 (+34.42%)
Mutual labels:  icons, svg-icons
react-crud-icons
57 SVG icons for CRUD applications, packaged as a React component with light & dark themes and tooltip.
Stars: ✭ 19 (-93.12%)
Mutual labels:  material-ui, svg-icons
WP-SVG-Icons-WordPress-Plugin
WPIcons Plugin (Formally WP SVG Icons) - Quickly and easily install font icons and custom SVG icons on any WordPress site.
Stars: ✭ 18 (-93.48%)
Mutual labels:  icons, svg-icons
Vectorlogozone
3,000+ gorgeous SVG logos, perfect for your README or credits page
Stars: ✭ 239 (-13.41%)
Mutual labels:  icons, svg-icons
mojoicons
Handcrafted 100 Outline and Flat Icons for Free -
Stars: ✭ 23 (-91.67%)
Mutual labels:  icons, svg-icons
phosphor-figma
A flexible icon family for Figma
Stars: ✭ 17 (-93.84%)
Mutual labels:  icons, svg-icons
Iconfontsimagelist
Components to simplify use of "Icon fonts": resize, color, opacity and more... with full support for High-DPI apps. Rendering optimized with GDI+
Stars: ✭ 147 (-46.74%)
Mutual labels:  material-ui, icons
graphicon
A Vue.js plugin/component to help you manage your icons seamlessly
Stars: ✭ 12 (-95.65%)
Mutual labels:  icons, svg-icons
Mahapps.metro.iconpacks
Awesome icon packs for WPF and UWP in one library
Stars: ✭ 1,157 (+319.2%)
Mutual labels:  material-ui, icons
majesticons
A versatile, beautiful, and scalable iconset. 760 icons each in line and solid style.
Stars: ✭ 98 (-64.49%)
Mutual labels:  icons, svg-icons
Font Awesome
The iconic SVG, font, and CSS toolkit
Stars: ✭ 66,937 (+24152.54%)
Mutual labels:  icons, svg-icons
SketchSVG
Have icons in a Sketch file but don't want to manually extract and compress them as SVGs? Let our SketchSVG tool do it!
Stars: ✭ 23 (-91.67%)
Mutual labels:  icons, svg-icons
Small N Flat
svg icons on a 24px grid
Stars: ✭ 205 (-25.72%)
Mutual labels:  icons, svg-icons
React Kawaii
Cute SVG React Components
Stars: ✭ 2,709 (+881.52%)
Mutual labels:  icons, svg-icons
vector-icons
Free Vector icons for Website and Mobile App
Stars: ✭ 28 (-89.86%)
Mutual labels:  icons, svg-icons
vaadin-icons
Vaadin Icons is a collection of 600+ unique icons designed for web applications
Stars: ✭ 59 (-78.62%)
Mutual labels:  icons, svg-icons

Material Design Icons for Material-UI

Material Design Icons version Material Design Icons version

This module provides Material-UI <SvgIcon /> components for all Material Design Icons. This is pretty handy if you use React and Material-UI to build a web app and run out of icons.

While this module contains wrappers for all icons, alias names are not included. For example, the plus icon is aliased as add, but only the plus icon is exported.

Installation

npm install mdi-material-ui --save

There are different major versions of this package, each one for different Material-UI releases. Note that this project does not follow semantic versioning. If Material Design Icons removes or renames icons, it will still be a minor version bump.

Material-UI mdi-material-ui npm tag
^5.0.0 npm next
^4.0.0 npm latest
^1.0.0, ^3.0.0 npm mui-v3
0.x npm legacy

Usage

Every icon is exported with its original name in PascalCase. So coffee becomes Coffee, cloud-print-outline is exported as CloudPrintOutline and so on.

The Material Design Light icons are included in the /light subdirectory.

With tree-shaking

If your environment supports tree-shaking and you are sure that it works fine in your setup, you can simply import the icons as follows:

import { Coffee, Food } from 'mdi-material-ui'
import { Camera, Settings } from 'mdi-material-ui/light'

<Coffee />
<Food />
<Camera />
<Settings />

Without tree-shaking

If your environment doesn't support tree-shaking, you should only import the icons that you actually need in order to ensure that you don't end up bundling all icons.

import Coffee from 'mdi-material-ui/Coffee'
import Food from 'mdi-material-ui/Food'
import Camera from 'mdi-material-ui/light/Camera'
import Settings from 'mdi-material-ui/light/Settings'

<Coffee />
<Food />
<Camera />
<Settings />

License

The scripts included in this repository are licensed under the WTFPL. The icons are licensed under the MIT license (see Material Design Icons and the NOTICE file).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].