Skip to content

sigma

sum • calculate • formula • maths • enumeration • enumerate

Created:

v0.14.0

Last changed:

v0.16.28

Contributors:

mittalyashujohnleteyericfennis
html
<i data-lucide="sigma"></i>
tsx
import { Sigma } from 'lucide-react';

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

export default App;
vue
<script setup>
  import { Sigma } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="sigma"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-sigma"></div>