Capítulo 63 de 147

Chapter 63: Filled Icons

Core Idea

Learn how to use fills with Lucide icons in your Solid application, and the limitations of using fills with Lucide icons.

Code Examples

import Star from 'lucide-solid/icons/star';
import StarHalf from 'lucide-solid/icons/star-half';

import "./icon.css";

function App() {
  return (
    <div class="app">
      <div class="star-rating">
        <div class="stars">
          { Array.from({ length: 5 }, () => (
              <Star fill="#111" strokeWidth={0} />
          ))}
        </div>
        <div class="stars rating">
          <Star fill="yellow" strokeWidth={0} />
          <Star fill="yellow" strokeWidth={0} />
          <StarHalf fill="yellow" strokeWidth={0} />
        </div>
      </div>
    </div>
  );
}

export default App;
  • What it demonstrates: Filled Icons usage pattern from the official Lucide docs.

Key Takeaways

  1. Learn how to use fills with Lucide icons in your Solid application, and the limitations of using fills with Lucide icons.

Connects To

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