Skip to content

jar

lab

pot • container • storage • jam • preserve • conserve • honey • marmalade • sweet • sugar • diet • inkwell • glass • kitchenware

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

createIcons({
  icons: {
    jar
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Jar
112
8
11