Skip to content

snowflake

cold • weather • freeze • snow • winter

Last changed:

v0.133.0

Contributors:

lscheibelericfennis
html
<i data-lucide="snowflake"></i>
tsx
import { Snowflake } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-snowflake"></div>