Skip to content

test-tube

tube • vial • phial • flask • ampoule • ampule • lab • chemistry • experiment • test

Created:

v0.166.0

Last changed:

v0.166.0

Contributors:

danielbayley
html
<i data-lucide="test-tube"></i>
tsx
import { TestTube } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-test-tube"></div>