Skip to content

hard-drive

computer • server • memory • data • ssd • disk • hard disk

Created:

v0.0.0

Last changed:

v0.133.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="hard-drive"></i>
tsx
import { HardDrive } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-hard-drive"></div>
dart
Icon(LucideIcons.hard-drive);