Icon 
copy-aB
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-copy-aB'></i>react
import { CopyAB } from "meistericons-react";
export default () => {
  return <CopyAB />;
};vue
import { CopyAB } from "meistericons-vue";
export default {
  name:'CopyAB',
  components: {CopyAB}
}
</script>
<template>
  <CopyAB/>
</template>vue3
<script>
import { CopyAB } from "meistericons-vue-latest";
</script>
<template>
    <CopyAB/>
</template>