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

Skip to content

ice-skate

lab

skates • ice rink • figure skating • speed skating • boots • shoes • footwear • winter

html
<script>
import { createIcons } from 'lucide';
import { iceSkate } from '@lucide/lab';

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

<i data-lucide="ice-skate"></i>  
tsx
import { Icon } from 'lucide-react';
import { iceSkate } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={iceSkate} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { iceSkate } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="iceSkate" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { iceSkate } from '@lucide/lab';
</script>

<Icon iconNode={iceSkate} />
tsx
import { Icon } from 'lucide-preact';
import { iceSkate } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={iceSkate} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { iceSkate } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={iceSkate} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { iceSkate } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="IceSkate"></lucide-icon>

看看这个图标的实际效果

错误
功能
Ice
112
8
11