This commit is contained in:
2025-05-24 01:49:48 +09:00
commit 62abbcf4eb
2376 changed files with 325522 additions and 0 deletions

View File

@@ -0,0 +1,114 @@
### Colors
Customize `<VIconWrap />` with the `color` and `hasBackground` props.
See code for more details about usage.
<!--code-->
```vue
<template>
<VFlex
flex-wrap="wrap"
align-items="flex-end"
row-gap=".5rem"
column-gap=".25rem"
>
<VIconWrap icon="lucide:star" color="primary" />
<VIconWrap icon="lucide:star" color="secondary" />
<VIconWrap icon="lucide:star" color="success" />
<VIconWrap icon="lucide:star" color="link" />
<VIconWrap icon="lucide:star" color="info" />
<VIconWrap icon="lucide:star" color="warning" />
<VIconWrap icon="lucide:star" color="danger" />
<VIconWrap icon="lucide:star" color="black" />
<VIconWrap icon="lucide:star" color="white" />
</VFlex>
<VFlex
class="mt-4"
align-items="flex-end"
column-gap=".25rem"
>
<VIconWrap
icon="lucide:star"
has-background
color="primary"
/>
<VIconWrap
icon="lucide:star"
has-background
color="secondary"
/>
<VIconWrap
icon="lucide:star"
has-background
color="success"
/>
<VIconWrap
icon="lucide:star"
has-background
color="link"
/>
<VIconWrap
icon="lucide:star"
has-background
color="info"
/>
<VIconWrap
icon="lucide:star"
has-background
color="warning"
/>
<VIconWrap
icon="lucide:star"
has-background
color="danger"
/>
<VIconWrap
icon="lucide:star"
has-background
color="black"
/>
<VIconWrap
icon="lucide:star"
has-background
color="white"
/>
</VFlex>
</template>
```
<!--/code-->
<!--example-->
<div>
<VFlex
flex-wrap="wrap"
align-items="flex-end"
row-gap=".5rem"
column-gap=".25rem"
>
<VIconWrap icon="lucide:star" color="primary" />
<VIconWrap icon="lucide:star" color="secondary" />
<VIconWrap icon="lucide:star" color="success" />
<VIconWrap icon="lucide:star" color="link" />
<VIconWrap icon="lucide:star" color="info" />
<VIconWrap icon="lucide:star" color="warning" />
<VIconWrap icon="lucide:star" color="danger" />
<VIconWrap icon="lucide:star" color="black" />
<VIconWrap icon="lucide:star" color="white" />
</VFlex>
<VFlex class="mt-4" align-items="flex-end" column-gap=".25rem">
<VIconWrap icon="lucide:star" has-background color="primary" />
<VIconWrap icon="lucide:star" has-background color="secondary" />
<VIconWrap icon="lucide:star" has-background color="success" />
<VIconWrap icon="lucide:star" has-background color="link" />
<VIconWrap icon="lucide:star" has-background color="info" />
<VIconWrap icon="lucide:star" has-background color="warning" />
<VIconWrap icon="lucide:star" has-background color="danger" />
<VIconWrap icon="lucide:star" has-background color="black" />
<VIconWrap icon="lucide:star" has-background color="white" />
</VFlex>
</div>
<!--/example-->