Skip to content

server-crash

cloud • storage • problem • error

Created:

v0.13.0

Last changed:

v0.18.0

Contributors:

mittalyashuericfennis
html
<i data-lucide="server-crash"></i>
tsx
import { ServerCrash } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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