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