square-stop
js
import { createIcons, icons } from 'lucide';
createIcons({ icons });
document.body.append('<i data-lucide="square-stop"></i>');
tsx
import { SquareStop } from 'lucide-react';
const App = () => {
return (
<SquareStop />
);
};
export default App;
vue
<script setup>
import { SquareStop } from 'lucide-vue-next';
</script>
<template>
<SquareStop />
</template>
svelte
<script>
import { SquareStop } from 'lucide-svelte';
</script>
<SquareStop />
tsx
import { SquareStop } from 'lucide-preact';
const App = () => {
return (
<SquareStop />
);
};
export default App;
tsx
import { SquareStop } from 'lucide-solid';
const App = () => {
return (
<SquareStop />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, SquareStop } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ SquareStop })
],
})
// app.component.html
<lucide-icon name="square-stop"></lucide-icon>
html
<div class="icon-square-stop"></div>
See this icon in action
Bug
Feature
Square
112
8
11