Skip to content

towel-rack

flannel • bathroom • toiletries • sanitation • clean • fresh • dry • laundry • laundrette • hospitality • housekeeping • room service • spa break • health club • amenities • hanging

Created:

v0.570.0

Last changed:

v0.570.0

Contributors:

danielbayleyjguddaskarsa-mistmere
html
<script>
import { createIcons, towelRack } from 'lucide';

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

<i data-lucide="towel-rack"></i>  
tsx
import { TowelRack } from 'lucide-react';

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

export default App;
vue
<script setup>
import { TowelRack } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Towel
112
8
11