Skip to content

lens-convex

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

Created:

v0.565.0

Last changed:

v0.565.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Lens
112
8
11