Skip to content

unlock-dot

security

Created:

v0.0.0

Last changed:

v0.0.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide-name="unlock-dot"></i>
tsx
import { UnlockDot } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-unlock-dot"></div>
dart
Icon(LucideIcons.unlock-dot);