Skip to content

cable

cord • wire • connector • connection • link • signal • console • computer • equipment • electricity • energy • electronics • recharging • charger • power • supply • disconnected • unplugged • plugs • interface • input • output • audio video • av • rca • scart • tv • television • optical

Created:

v0.261.0

Last changed:

v0.367.0

Contributors:

danielbayley
html
<i data-lucide="cable"></i>
tsx
import { Cable } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-cable"></div>