Skip to content

Icon

play

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'></i>
react
import { Play } from "meistericons-react";

export default () => {
  return <Play />;
};
vue
import { Play } from "meistericons-vue";

export default {
  name:'Play',
  components: {Play}
}
</script>

<template>
  <Play/>
</template>
vue3
<script>
import { Play } from "meistericons-vue-latest";
</script>

<template>
    <Play/>
</template>