mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 12:33:51 +09:00
first
This commit is contained in:
114
documentation/icon-wrap/icon-wrap-colors-documentation.md
Normal file
114
documentation/icon-wrap/icon-wrap-colors-documentation.md
Normal 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-->
|
||||
Reference in New Issue
Block a user