corner-left-down
  
  html
  
<i data-lucide="corner-left-down"></i>
  
  tsx
  
import { CornerLeftDown } from 'lucide-react';
const App = () => {
  return (
    <CornerLeftDown />
  );
};
export default App;
  
  vue
  
<script setup>
  import { CornerLeftDown } from 'lucide-vue-next';
</script>
<template>
  <CornerLeftDown />
</template>
  
  svelte
  
<script>
import { CornerLeftDown } from 'lucide-svelte';
</script>
<CornerLeftDown />
  
  tsx
  
import { CornerLeftDown } from 'lucide-preact';
const App = () => {
  return (
    <CornerLeftDown />
  );
};
export default App;
  
  tsx
  
import { CornerLeftDown } from 'lucide-solid';
const App = () => {
  return (
    <CornerLeftDown />
  );
};
export default App;
  
  tsx
  
// app.module.ts
import { LucideAngularModule, CornerLeftDown } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ CornerLeftDown })
  ],
})
// app.component.html
<lucide-icon name="corner-left-down"></lucide-icon>
  
  html
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-corner-left-down"></div>
  
  dart
  
Icon(LucideIcons.corner-left-down);

