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