Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

hard-drive

computer • server • memory • data • ssd • disk • hard disk • storage • hardware • backup • media

创建时间:

v0.0.0

最后修改:

v0.564.0

Contributors:

colebemiscsandmanericfennisjguddas
html
<script>
import { createIcons, hardDrive } from 'lucide';

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

<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';
</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
<div class="icon-hard-drive"></div>

看看这个图标的实际效果

错误
功能
Hard
112
8
11