Skip to content

binary

code • digits • computer • zero • one • boolean

Created:

v0.14.0

Last changed:

v0.243.0

Contributors:

mittalyashukarsa-mistmereericfennis
html
<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
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-binary"></div>