Skip to content

cpu

processor • cores • technology • computer • chip • circuit • memory • ram • specs • gigahertz • ghz

Created:

v0.0.0

Last changed:

v0.163.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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