Skip to content

sneaker

lab

trainer • shoe • footwear • store • clothing • clothes • apparel • attire • outfit • fashion • casual • exercise • running • jogging

Contributors:

danielbayley
js
import { createIcons, icons } from 'lucide';
import { sneaker } from '@lucide/lab';

createIcons({
  icons: {
    sneaker
  }
});

document.body.append('<i data-lucide="sneaker"></i>');  
tsx
import { Icon } from 'lucide-react';
import { sneaker } from '@lucide/lab';

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Sneaker
112
8
11