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

Skip to content

waves-shark-fin

lab

pectoral • fishing • infested • waters • warning • danger • alert • jaws • attack • aquatic • encounter • marine life • tourism • seaside • beach • ocean • depth • deep

Contributors:

danielbayley
html
<script>
import { createIcons } from 'lucide';
import { wavesSharkFin } from '@lucide/lab';

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

<i data-lucide="waves-shark-fin"></i>  
tsx
import { Icon } from 'lucide-react';
import { wavesSharkFin } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={wavesSharkFin} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { wavesSharkFin } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="wavesSharkFin" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { wavesSharkFin } from '@lucide/lab';
</script>

<Icon iconNode={wavesSharkFin} />
tsx
import { Icon } from 'lucide-preact';
import { wavesSharkFin } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={wavesSharkFin} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { wavesSharkFin } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={wavesSharkFin} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { wavesSharkFin } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="WavesSharkFin"></lucide-icon>

看看这个图标的实际效果

错误
功能
Waves
112
8
11