Skip to content

zoom-out

magnifying glass • plus

Created:

v0.0.0

Last changed:

v0.133.0

Contributors:

colebemisericfennis
html
<i data-lucide="zoom-out"></i>
tsx
import { ZoomOut } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-zoom-out"></div>