Getting Started with MCicons

Choose the method that fits your project — whether you’re building with Laravel, HTML, or React. MCicons makes it easy to drop pixel-perfect Minecraft icons into your UI.

CDN

Add the following line to your HTML & start using icons instantly:

<link rel="stylesheet" href="https://cdn.mcicons.dev/releases/v1.0.0/css/all.css">
            

Composer

Install via Composer for Laravel and PHP projects:

composer require themuhamed/mcicons
    

Then publish the assets:

php artisan vendor:publish --tag=mcicons-assets
    

Or copy manually (if needed):

mkdir -p public/vendor/mcicons
cp -r vendor/themuhamed/mcicons/resources/css/mcicons.css public/vendor/mcicons/
cp -r vendor/themuhamed/mcicons/public/icons public/vendor/mcicons/
    

NPM (Coming Soon)

Install via npm for use in JS/React/Vite projects:

npm install mcicons
            

NPM support will be added in a future update.

Using the Icons

Just add the class to any HTML element like:

<i class="mc mc-diamond"></i>
        
Browse All Icons