Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

type-outline

text • font • typography • silhouette • profile • contour • stroke • line

创建时间:

v0.407.0

最后修改:

v0.407.0

Contributors:

karsa-mistmerecolebemisericfennis
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';
</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>

看看这个图标的实际效果

错误
功能
Type
112
8
11