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