Skip to content

laptop-minimal

computer • screen • remote

Created:

v0.12.0

Last changed:

v0.352.0

Contributors:

ericfennis
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="laptop-minimal"></i>');  
tsx
import { LaptopMinimal } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-laptop-minimal"></div>