Icon
play-pause
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-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>