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

Skip to content

frame

logo • design • tool

创建时间:

v0.22.0

最后修改:

v0.133.0

Contributors:

Boweroericfennis
html
<script>
import { createIcons, frame } from 'lucide';

createIcons({
  icons: {
    frame
  }
});
</script>

<i data-lucide="frame"></i>  
tsx
import { Frame } from 'lucide-react';

const App = () => {
  return (
    <Frame />
  );
};

export default App;
vue
<script setup>
import { Frame } from '@lucide/vue';
</script>

<template>
  <Frame />
</template>
svelte
<script>
import { Frame } from 'lucide-svelte';
</script>

<Frame />
tsx
import { Frame } from 'lucide-preact';

const App = () => {
  return (
    <Frame />
  );
};

export default App;
tsx
import { Frame } from 'lucide-solid';

const App = () => {
  return (
    <Frame />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, Frame } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ Frame })
  ],
})

// app.component.html
<lucide-icon name="frame"></lucide-icon>
html
<div class="icon-frame"></div>

看看这个图标的实际效果

错误
功能
Frame
112
8
11