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