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

Skip to content

waves-ladder

swimming • water • pool • lifeguard • ocean • 🌊 • 🏊‍♂️ • 🏊‍♀️ • 🏊 • 🥽

创建时间:

v0.468.0

最后修改:

v0.468.0

Contributors:

karsa-mistmere
html
<script>
import { createIcons, wavesLadder } from 'lucide';

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

<i data-lucide="waves-ladder"></i>  
tsx
import { WavesLadder } from 'lucide-react';

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

export default App;
vue
<script setup>
import { WavesLadder } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="waves-ladder"></lucide-icon>
html
<div class="icon-waves-ladder"></div>

看看这个图标的实际效果

错误
功能
Waves
112
8
11