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