mirror of
https://github.com/lucide-icons/lucide.git
synced 2026-02-24 18:59:42 +01:00
26 lines
500 B
Markdown
26 lines
500 B
Markdown
---
|
|
title: Packages
|
|
description: Discover the various packages available in the Lucide ecosystem.
|
|
layout: page
|
|
outline: 2
|
|
outlineTitle: Packages
|
|
---
|
|
<script setup>
|
|
import PageContainer from '.vitepress/theme/components/PageContainer.vue'
|
|
import PackageList from '.vitepress/theme/components/packages/PackageList.vue'
|
|
</script>
|
|
|
|
<div class="VPDoc content">
|
|
<PageContainer>
|
|
<PackageList />
|
|
</PageContainer>
|
|
</div>
|
|
|
|
<style scoped>
|
|
.container {
|
|
margin: 0 auto;
|
|
max-width: 1200px;
|
|
}
|
|
|
|
</style>
|