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

Skip to content

mask-snorkel

lab

scuba • submerge • freediving • diver • location • spot • gear • equipment • vacation • summer holiday • seaside • beach • ocean • depth • deep • underwater • oxygen • o2 • breathe • air • aquatic • encounter • exploration • observe • view • fish • marine life • tourism

Contributors:

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

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

<i data-lucide="mask-snorkel"></i>  
tsx
import { Icon } from 'lucide-react';
import { maskSnorkel } from '@lucide/lab';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Mask
112
8
11