@symbo.ls/button 2.11.132 → 2.11.148

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.
Files changed (2) hide show
  1. package/index.js +27 -0
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -52,3 +52,30 @@ export const KangorooButton = {
52
52
  extend: Button,
53
53
  childExtend: IconText
54
54
  }
55
+
56
+ export const CancenConfirmButtons = {
57
+ extend: Flex,
58
+ childExtend: Button,
59
+ ...[
60
+ { props: { text: 'Cancel' } },
61
+ { props: { text: 'Confirm' } }
62
+ ],
63
+
64
+ props: {
65
+ gap: 'Y',
66
+ maxWidth: 'fit-content',
67
+ childProps: {
68
+ fontWeight: '500',
69
+ color: 'white',
70
+ padding: 'A B+X',
71
+ ':first-child': {
72
+ background: 'transparent'
73
+ },
74
+ ':last-child': {
75
+ background: '#0474F2',
76
+ round: 'A'
77
+ }
78
+ }
79
+ }
80
+
81
+ }
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@symbo.ls/button",
3
- "version": "2.11.132",
3
+ "version": "2.11.148",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "13027443598f113dd2b79ddf7aaf1adbd46d97d7",
6
+ "gitHead": "cc8a90c342164fa79fa929bbb38a03bfd624f47a",
7
7
  "dependencies": {
8
8
  "@symbo.ls/atoms": "latest",
9
9
  "@symbo.ls/icon": "latest"