sport-shoe
html
<script>
import { createIcons, sportShoe } from 'lucide';
createIcons({
icons: {
sportShoe
}
});
</script>
<i data-lucide="sport-shoe"></i>
tsx
import { SportShoe } from 'lucide-react';
const App = () => {
return (
<SportShoe />
);
};
export default App;
vue
<script setup>
import { SportShoe } from '@lucide/vue';
</script>
<template>
<SportShoe />
</template>
svelte
<script>
import { SportShoe } from 'lucide-svelte';
</script>
<SportShoe />
tsx
import { SportShoe } from 'lucide-preact';
const App = () => {
return (
<SportShoe />
);
};
export default App;
tsx
import { SportShoe } from 'lucide-solid';
const App = () => {
return (
<SportShoe />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, SportShoe } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ SportShoe })
],
})
// app.component.html
<lucide-icon name="sport-shoe"></lucide-icon>
html
<div class="icon-sport-shoe"></div>
看看这个图标的实际效果
错误
功能
Sport
112
8
11