user-round-key
html
<script>
import { createIcons, userRoundKey } from 'lucide';
createIcons({
icons: {
userRoundKey
}
});
</script>
<i data-lucide="user-round-key"></i>
tsx
import { UserRoundKey } from 'lucide-react';
const App = () => {
return (
<UserRoundKey />
);
};
export default App;
vue
<script setup>
import { UserRoundKey } from 'lucide-vue-next';
</script>
<template>
<UserRoundKey />
</template>
svelte
<script>
import { UserRoundKey } from 'lucide-svelte';
</script>
<UserRoundKey />
tsx
import { UserRoundKey } from 'lucide-preact';
const App = () => {
return (
<UserRoundKey />
);
};
export default App;
tsx
import { UserRoundKey } from 'lucide-solid';
const App = () => {
return (
<UserRoundKey />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, UserRoundKey } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ UserRoundKey })
],
})
// app.component.html
<lucide-icon name="user-round-key"></lucide-icon>
html
<div class="icon-user-round-key"></div>
See this icon in action
Bug
Feature
User
112
8
11