Skip to content

dna

gene • gmo • helix • heredity • chromosome • nucleic acid

Created:

v0.97.0

Last changed:

v0.97.0

Contributors:

karsa-mistmere
html
<i data-lucide="dna"></i>
tsx
import { Dna } from 'lucide-react';

const App = () => {
  return (
    <Dna />
  );
};

export default App;
vue
<script setup>
  import { Dna } from 'lucide-vue-next';
</script>

<template>
  <Dna />
</template>
svelte
<script>
import { Dna } from 'lucide-svelte';
</script>

<Dna />
tsx
import { Dna } from 'lucide-preact';

const App = () => {
  return (
    <Dna />
  );
};

export default App;
tsx
import { Dna } from 'lucide-solid';

const App = () => {
  return (
    <Dna />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, Dna } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ Dna })
  ],
})

// app.component.html
<lucide-icon name="dna"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

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