mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-17 17:37:42 +01:00
* Add global styling docs * Add global styling and filled icon docs * Fix typos global-styling.md * Update filled-icons.md
31 lines
402 B
JavaScript
31 lines
402 B
JavaScript
import {
|
|
CakeSlice,
|
|
Candy,
|
|
Apple,
|
|
Cookie,
|
|
Martini,
|
|
IceCream2,
|
|
Sandwich,
|
|
Wine,
|
|
Dessert,
|
|
} from "lucide-react";
|
|
import "./icon.css";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="app">
|
|
<CakeSlice />
|
|
<Candy />
|
|
<Apple />
|
|
<Cookie />
|
|
<Martini />
|
|
<IceCream2 />
|
|
<Sandwich />
|
|
<Wine />
|
|
<Dessert />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|