Skip to content

eye-off

view • watch • hide • hidden

Created:

v0.0.0

Last changed:

v0.133.0

Contributors:

colebemiscsandmanericfenniskarsa-mistmere
html
<i data-lucide="eye-off"></i>
tsx
import { EyeOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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