Skip to content

signature

text • format • input • contract • autograph • handwriting • sign • cursive • ink • scribble • authorize • personal • agreement • legal • document • identity • authentic • approval • verification • unique

Created:

v0.397.0

Last changed:

v0.401.0

Contributors:

AndreasSasjguddas
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="signature"></i>');  
tsx
import { Signature } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-signature"></div>