feat: add gradient(monochrome, duotone), outline colored button. prefix and suffix slots button

This commit is contained in:
Alexandr
2022-06-30 19:56:08 +03:00
parent 957419b2b0
commit 6d043fd53d
15 changed files with 327 additions and 23 deletions

View File

@@ -0,0 +1,14 @@
<template>
<div class="inline-flex align-center gap-2 flex-wrap">
<Button gradient="purple-blue">Purple to blue</Button>
<Button gradient="cyan-blue">Cyan to blue</Button>
<Button gradient="green-blue">Green to blue</Button>
<Button gradient="purple-pink">Purple to pink</Button>
<Button gradient="pink-orange">Pink to orange</Button>
<Button gradient="teal-lime">Teal to lime</Button>
<Button gradient="red-yellow">Red to yellow</Button>
</div>
</template>
<script setup>
import { Button } from '../../../../src/index'
</script>