Skip to content

stone

mineral • geology • nature • solid • pebble • crystal • ore • hard • coal • stone • rock • boulder

Created:

v0.561.0

Last changed:

v0.561.0

Contributors:

Alportankarsa-mistmere
html
<script>
import { createIcons, stone } from 'lucide';

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

<i data-lucide="stone"></i>  
tsx
import { Stone } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Stone
112
8
11