Skip to content

user-round-cog

settings • edit • cog • gear

Created:

v0.209.0

Last changed:

v0.293.0

Contributors:

karsa-mistmere
html
<i data-lucide="user-round-cog"></i>
tsx
import { UserRoundCog } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-user-round-cog"></div>