Capítulo 25 de 147

Chapter 25: Aliased Names

Core Idea

Learn about the different import name styles available for Lucide icons in your React project and how to choose the one that best fits your needs.

Key Concepts

  • Choosing import name style

Code Examples

// These are all the same icon
import {
  House,
  HouseIcon,
  LucideHouse,
} from "lucide-react";
  • What it demonstrates: Aliased Names usage pattern from the official Lucide docs.

Key Takeaways

  1. Choosing import name style

Connects To

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