Back to Lucide

Getting started - Astro

docs/guide/astro/getting-started.md

1.14.02.1 KB
Original Source
<script setup> import OverviewLink from '../../.vitepress/theme/components/base/OverviewLink.vue' import OverviewLinkGrid from '../../.vitepress/theme/components/base/OverviewLinkGrid.vue' import { astroSidebar } from '../../.vitepress/sidebar/astro' </script>

Getting started

This guide will help you get started with Lucide in your Astro project. Make sure you have a Astro environment set up. If you don't have one yet, you can create a new Astro project using Vite, or any other Astro boilerplate of your choice.

Installation

::: code-group

sh
pnpm add @lucide/astro
sh
yarn add @lucide/astro
sh
npm install @lucide/astro
sh
bun add @lucide/astro

:::

Importing your first icon

Lucide is built with ES Modules, so it's completely tree-shakable.

Each icon can be imported as an Astro component, which renders an inline SVG element. This way, only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.

astro
---
import { Camera } from '@lucide/astro';
---

<Camera />

Props

To customize the appearance of an icon, you can use the following props:

nametypedefault
sizenumber24
colorstringcurrentColor
stroke-widthnumber2
absoluteStrokeWidthbooleanfalse
default-classstringlucide-icon

Because icons render as SVG elements, all standard SVG attributes can also be applied as props. See the list of SVG Presentation Attributes on MDN.

astro
---
import { Camera } from '@lucide/astro';
---

<Camera color="#ff3e98" size={48} stroke-width={1} />

More examples and details how to use props, continue the guide:

<OverviewLinkGrid> <OverviewLink v-for="item in astroSidebar[1].items" :key="item.link" :href="item.link" :title="item.text" :desc="item.desc"/> </OverviewLinkGrid>