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

