Skip to content

lens-concave

concave • lens • optics • light • magnification • curved • focus • refraction • science • physics • eyeglass • telescope • microscope

Created:

v0.565.0

Last changed:

v0.565.0

Contributors:

Muhammad-Aqib-Bashirjamiemlawkarsa-mistmere
html
<script>
import { createIcons, lensConcave } from 'lucide';

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

<i data-lucide="lens-concave"></i>  
tsx
import { LensConcave } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="lens-concave"></lucide-icon>
html
<div class="icon-lens-concave"></div>

See this icon in action

Bug
Feature
Lens
112
8
11