Skip to content

square-x

cancel • close • delete • remove • times • clear • maths • multiply • multiplication

Created:

v0.0.0

Last changed:

v0.352.0

Contributors:

colebemisericfennis
html
<i data-lucide="square-x"></i>
tsx
import { SquareX } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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