mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-17 09:37:43 +01:00
* Add global styling docs * Add global styling and filled icon docs * Fix typos global-styling.md * Update filled-icons.md
31 lines
418 B
JavaScript
31 lines
418 B
JavaScript
import {
|
|
TentTree,
|
|
Caravan,
|
|
FlameKindling,
|
|
MountainSnow,
|
|
Trees,
|
|
Axe,
|
|
Map,
|
|
CloudMoon,
|
|
Sparkles,
|
|
} from "lucide-react";
|
|
import "./icon.css";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="app">
|
|
<TentTree />
|
|
<Caravan />
|
|
<FlameKindling />
|
|
<MountainSnow />
|
|
<Trees />
|
|
<Axe />
|
|
<Map />
|
|
<CloudMoon />
|
|
<Sparkles />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|