Skip to content

eye-dashed

view • watch • see • hide • conceal • mask • hidden • invisible • visibility • vision

Created:

v1.19.0

Last changed:

v1.19.0

Contributors:

colebemiskarsa-mistmereericfennis
html
<script>
import { createIcons, eyeDashed } from 'lucide';

createIcons({
  icons: {
    eyeDashed
  }
});
</script>

<i data-lucide="eye-dashed"></i>  
tsx
import { EyeDashed } from 'lucide-react';

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

export default App;
vue
<script setup>
import { EyeDashed } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="eye-dashed"></lucide-icon>
html
<div class="icon-eye-dashed"></div>

See this icon in action

Bug
Feature
Eye
112
8
11