Skip to content

candy-cane

sugar • food • sweet • christmas • xmas

Created:

v0.246.0

Last changed:

v0.246.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="candy-cane"></i>
tsx
import { CandyCane } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="candy-cane"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-candy-cane"></div>
dart
Icon(LucideIcons.candy-cane);