Skip to content

log-out

sign out • arrow • exit • auth

Created:

v0.0.0

Last changed:

v0.133.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="log-out"></i>
tsx
import { LogOut } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-log-out"></div>
dart
Icon(LucideIcons.log-out);