Capítulo 99 de 147

Chapter 99: Aliased Names

Core Idea

Learn about the different import name styles available for Lucide icons in your React Native 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-native";
  • What it demonstrates: Aliased Names usage pattern from the official Lucide docs.

Key Takeaways

  1. Choosing import name style

Connects To

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