mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-17 17:07:41 +01:00
24 lines
574 B
JavaScript
24 lines
574 B
JavaScript
|
|
import { Star, StarHalf } from "lucide-react";
|
||
|
|
import "./icon.css";
|
||
|
|
|
||
|
|
function App() {
|
||
|
|
return (
|
||
|
|
<div className="app">
|
||
|
|
<div className="star-rating">
|
||
|
|
<div className="stars">
|
||
|
|
{ Array.from({ length: 5 }, () => (
|
||
|
|
<Star fill="#111" strokeWidth={0} />
|
||
|
|
))}
|
||
|
|
</div>
|
||
|
|
<div className="stars rating">
|
||
|
|
<Star fill="yellow" strokeWidth={0} />
|
||
|
|
<Star fill="yellow" strokeWidth={0} />
|
||
|
|
<StarHalf fill="yellow" strokeWidth={0} />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default App;
|