Icon
map-alt
Installation
css
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/meistericons@latest/fonts/mni.css">
react
npm i meistericons-react --save
vue
npm i meistericons-vue --save
vue3
npm i meistericons-vue-latest --save
Usage
css
<i class='mni-map-alt'></i>
react
import { MapAlt } from "meistericons-react";
export default () => {
return <MapAlt />;
};
vue
import { MapAlt } from "meistericons-vue";
export default {
name:'MapAlt',
components: {MapAlt}
}
</script>
<template>
<MapAlt/>
</template>
vue3
<script>
import { MapAlt } from "meistericons-vue-latest";
</script>
<template>
<MapAlt/>
</template>