Skip to content

user-check

followed • subscribed • done • todo • tick • complete • task

Created:

v0.0.0

Last changed:

v0.62.0

Contributors:

colebemiscsandmanericfenniskarsa-mistmere
html
<i data-lucide="user-check"></i>
tsx
import { UserCheck } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-user-check"></div>