webcake-ui-kit 1.0.14 → 1.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webcake-ui-kit",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "UI Kit for Vue 2 && 3 - Pure Options API",
5
5
  "main": "src/index.js",
6
6
  "module": "src/index.js",
@@ -0,0 +1,39 @@
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" :width="size" :height="size" viewBox="-1.5 -1.6 24 24" fill="none">
3
+ <path
4
+ d="M14 5.25H7C6.475 5.25 6.125 4.9 6.125 4.375C6.125 3.85 6.475 3.5 7 3.5H14C14.525 3.5 14.875 3.85 14.875 4.375C14.875 4.9 14.525 5.25 14 5.25Z"
5
+ :fill="color"
6
+ />
7
+ <path
8
+ d="M14 17.5H7C6.475 17.5 6.125 17.15 6.125 16.625C6.125 16.1 6.475 15.75 7 15.75H14C14.525 15.75 14.875 16.1 14.875 16.625C14.875 17.15 14.525 17.5 14 17.5Z"
9
+ :fill="color"
10
+ />
11
+ <path
12
+ d="M16.625 14.875C16.1 14.875 15.75 14.525 15.75 14V7C15.75 6.475 16.1 6.125 16.625 6.125C17.15 6.125 17.5 6.475 17.5 7V14C17.5 14.525 17.15 14.875 16.625 14.875Z"
13
+ :fill="color"
14
+ />
15
+ <path
16
+ d="M4.375 14.875C3.85 14.875 3.5 14.525 3.5 14V7C3.5 6.475 3.85 6.125 4.375 6.125C4.9 6.125 5.25 6.475 5.25 7V14C5.25 14.525 4.9 14.875 4.375 14.875Z"
17
+ :fill="color"
18
+ />
19
+ <path
20
+ d="M20.125 21H0.875C0.35 21 0 20.65 0 20.125V0.875C0 0.35 0.35 0 0.875 0H20.125C20.65 0 21 0.35 21 0.875V20.125C21 20.65 20.65 21 20.125 21ZM1.75 19.25H19.25V1.75H1.75V19.25Z"
21
+ :fill="color"
22
+ />
23
+ </svg>
24
+ </template>
25
+ <script>
26
+ export default {
27
+ name: 'Padding',
28
+ props: {
29
+ size: {
30
+ type: Number,
31
+ default: 16
32
+ },
33
+ color: {
34
+ type: String,
35
+ default: 'currentColor'
36
+ }
37
+ }
38
+ }
39
+ </script>