Skip to content

square-slash

git • diff • ignored • divide • division • shortcut • or • /

Created:

v0.0.0

Last changed:

v0.352.0

Contributors:

danielbayleyericfennis
html
<i data-lucide="square-slash"></i>
tsx
import { SquareSlash } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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