mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-17 15:07:41 +01:00
14 lines
213 B
JavaScript
14 lines
213 B
JavaScript
|
|
import { Star } from "lucide-react";
|
||
|
|
import "./icon.css";
|
||
|
|
|
||
|
|
function App() {
|
||
|
|
return (
|
||
|
|
<div className="text-wrapper">
|
||
|
|
<Star class="my-icon" />
|
||
|
|
<div>Yes</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default App;
|