Skip to content

touchpad

trackpad • cursor

Created:

v0.192.0

Last changed:

v0.192.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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