Skip to content

owl

lab

wise • wisdom • wings • bird • avian • tawny • perch • wildlife • nocturnal • knowledge • learning • education • hoot • 🦉

Contributors:

danielbayley
js
import { createIcons, icons } from 'lucide';
import { owl } from '@lucide/lab';

createIcons({
  icons: {
    owl
  }
});

document.body.append('<i data-lucide="owl"></i>');  
tsx
import { Icon } from 'lucide-react';
import { owl } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={owl} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { owl } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="owl" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { owl } from '@lucide/lab';
</script>

<Icon iconNode={owl} />
tsx
import { Icon } from 'lucide-preact';
import { owl } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={owl} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { owl } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={owl} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { owl } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="owl"></lucide-icon>

See this icon in action

Bug
Feature
Owl
112
8
11