Skip to content

galaxy

astronomy • space • stars • cosmos • universe • spiral • milky way • nebula • cosmology • interstellar • celestial • constellation • stargazing • spaceflight

Created:

v1.35.0

Last changed:

v1.35.0

Contributors:

karsa-mistmere
html
<script>
import { createIcons, Galaxy } from 'lucide';

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

<i data-lucide="galaxy"></i>  
tsx
import { Galaxy } from 'lucide-react';

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

export default App;
vue
<script setup>
import { Galaxy } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Galaxy
112
8
11