Capítulo 103 de 147

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

  1. Prerequisites
  2. Installation
  3. Importing your first icon
  4. Component inputs

Connects To

  • Angular: part of the Angular section of the Lucide docs.
  • Lucide for Angular: overview page for this section.