跳转到内容

lambda

greek • symbol • math • function • programming • serverless • anonymous • functional • cloud • wavelength • calculus • linear algebra

创建时间:

v0.0.0

最后修改:

v0.0.0

Contributors:

karsa-mistmerekaleidosiumUbaidUllah9962
html
<script>
import { createIcons, Lambda } from 'lucide';

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

<i data-lucide="lambda"></i>  
tsx
import { Lambda } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

看看这个图标的实际效果

错误
功能
Lambda
112
8
11