File: binary.md | Updated: 11/15/2025
Return to top
code • digits • computer • zero • one • boolean
VanillaReactVueSveltePreactSolidAngularIcon font
js
import { createIcons, icons } from 'lucide';
createIcons({ icons });
document.body.append('<i data-lucide="binary"></i>');
tsx
import { Binary } from 'lucide-react';
const App = () => {
return (
<Binary />
);
};
export default App;
vue
<script setup>
import { Binary } from 'lucide-vue-next';
</script>
<template>
<Binary />
</template>
svelte
<script>
import { Binary } from 'lucide-svelte';
</script>
<Binary />
tsx
import { Binary } from 'lucide-preact';
const App = () => {
return (
<Binary />
);
};
export default App;
tsx
import { Binary } from 'lucide-solid';
const App = () => {
return (
<Binary />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, Binary } from 'lucide-angular';
@NgModule({
imports: [\
LucideAngularModule.pick({ Binary })\
],
})
// app.component.html
<lucide-icon name="binary"></lucide-icon>
html
<div class="icon-binary"></div>
BinaryCancel
Bug
Feature
Binary
Documents Readme Binary 12
112
8
11
2
non-binary