Skip to content

square-sigma

sum • calculate • formula • maths • enumeration • enumerate

Created:

v0.223.0

Last changed:

v0.352.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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