Skip to content

hard-drive-download

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

Created:

v0.261.0

Last changed:

v0.261.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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