Skip to content

square-arrow-out-up-right

outwards • direction • north-east • diagonal • share • open • external • link

Created:

v0.311.0

Last changed:

v0.352.0

Contributors:

danielbayley
html
<i data-lucide="square-arrow-out-up-right"></i>
tsx
import { SquareArrowOutUpRight } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-square-arrow-out-up-right"></div>