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