Skip to content

case-kebab

lab

text • letters • characters • font • typography • dash • a-b • ab • string • code

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

createIcons({
  icons: {
    caseKebab
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Case
112
8
11