Skip to content

socks

lab

feet • foot • underwear • undergarment • store • clothing • clothes • apparel • attire • fashion • thread • cotton

Contributors:

danielbayleykarsa-mistmere
js
import { createIcons, icons } from 'lucide';
import { socks } from '@lucide/lab';

createIcons({
  icons: {
    socks
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Socks
112
8
11