Skip to content

sigma-square

sum • calculate • formula • maths • enumeration • enumerate

Created:

v0.223.0

Last changed:

v0.223.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="sigma-square"></i>
tsx
import { SigmaSquare } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-sigma-square"></div>
dart
Icon(LucideIcons.sigma-square);