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