Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

phone-call

ring

创建时间:

v0.0.0

最后修改:

v0.508.0

Contributors:

colebemisericfenniscsandmankarsa-mistmerejamiemlawjguddas
html
<script>
import { createIcons, phoneCall } from 'lucide';

createIcons({
  icons: {
    phoneCall
  }
});
</script>

<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';
</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
<div class="icon-phone-call"></div>

看看这个图标的实际效果

错误
功能
Phone
112
8
11