Skip to content

parasol

umbrella • sunshade • beach • shade • sun • protection • cover • canopy • garden • outdoors • resort • travel • vacation • holiday • summer • apparel • accessory • sunbathing • relax • tropical

Created:

v1.17.0

Last changed:

v1.17.0

Contributors:

karsa-mistmere
html
<script>
import { createIcons, parasol } from 'lucide';

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

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

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

export default App;
vue
<script setup>
import { Parasol } from '@lucide/vue';
</script>

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Parasol
112
8
11