Skip to content

hop-off

beer • brewery • drink • hop free • allergy • intolerance • diet

Created:

v0.97.0

Last changed:

v0.335.0

Contributors:

karsa-mistmereericfennis
html
<i data-lucide="hop-off"></i>
tsx
import { HopOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-hop-off"></div>