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