square-dashed-bottom-code
html
<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
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-square-dashed-bottom-code"></div>