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