Skip to content

server-cog

cloud • storage • computing • cog • gear

Created:

v0.68.0

Last changed:

v0.266.0

Contributors:

karsa-mistmere
html
<i data-lucide="server-cog"></i>
tsx
import { ServerCog } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-server-cog"></div>