Chapter 103: Getting started
Core Idea
This guide will help you get started with Lucide in your Angular project.
Key Concepts
- Prerequisites
- Installation
- Importing your first icon
- Component inputs
Code Examples
import { Component } from '@angular/core';
import { LucideFileText } from '@lucide/angular';
@Component({
selector: 'app',
template: '<svg lucideFileText></svg>',
imports: [LucideFileText],
})
export class App { }
- What it demonstrates: Getting started usage pattern from the official Lucide docs.
Key Takeaways
- Prerequisites
- Installation
- Importing your first icon
- Component inputs
Connects To
- Angular: part of the Angular section of the Lucide docs.
- Lucide for Angular: overview page for this section.