Skip to content

cone

conical • triangle • triangular • geometry • filter • funnel • hopper • spotlight • searchlight

Created:

v0.280.0

Last changed:

v0.280.0

Contributors:

danielbayleykarsa-mistmere
html
<i data-lucide="cone"></i>
tsx
import { Cone } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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