Skip to content

form-input

2fa • authenticate • login • field • text

Created:

v0.15.12

Last changed:

v0.133.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="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);