Skip to content

square-off

/ • not • slash • off • disabled • inactive • cancel • none • block • forbidden • unavailable • stopped • checkbox • unchecked • toggle • negation • form • ui

Created:

v0.0.0

Last changed:

v0.0.0

Contributors:

colebemisericfennisoctober-learns
html
<script>
import { createIcons, squareOff } from 'lucide';

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

<i data-lucide="square-off"></i>  
tsx
import { SquareOff } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Square
112
8
11