Skip to content

phone-call

ring

Created:

v0.0.0

Last changed:

v0.49.0

Contributors:

colebemisericfenniscsandmankarsa-mistmere
html
<i data-lucide="phone-call"></i>
tsx
import { PhoneCall } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-phone-call"></div>