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