Skip to content

omega

greek • symbol • mathematics • education • physics • engineering • ohms • electrical resistance • angular frequency • dynamical systems • astronomy • constellations • philosophy

Created:

v0.420.0

Last changed:

v0.420.0

Contributors:

karsa-mistmere
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="omega"></i>');  
tsx
import { Omega } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-omega"></div>