mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-17 15:07:41 +01:00
23 lines
408 B
Markdown
23 lines
408 B
Markdown
|
|
---
|
||
|
|
layout: page
|
||
|
|
outline: 2
|
||
|
|
outlineTitle: Showcase
|
||
|
|
---
|
||
|
|
<script setup>
|
||
|
|
import PageContainer from '.vitepress/theme/components/PageContainer.vue'
|
||
|
|
import ShowcaseList from '.vitepress/theme/components/showcase/ShowcaseList.vue'
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div class="VPDoc content">
|
||
|
|
<PageContainer>
|
||
|
|
<ShowcaseList />
|
||
|
|
</PageContainer>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.container {
|
||
|
|
margin: 0 auto;
|
||
|
|
max-width: 1200px;
|
||
|
|
}
|
||
|
|
</style>
|