@coolbuttons/react 1.0.0
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/README.md +73 -0
- package/dist/index.esm.js +874 -0
- package/dist/index.js +91 -0
- package/package.json +54 -0
package/README.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# @coolbuttons/react
|
|
2
|
+
|
|
3
|
+
Production-ready button components for React applications.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @coolbuttons/react
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```jsx
|
|
14
|
+
import { Claymorphic, GlassCard, NeumorphicSoft } from '@coolbuttons/react';
|
|
15
|
+
|
|
16
|
+
export default function App() {
|
|
17
|
+
return (
|
|
18
|
+
<div>
|
|
19
|
+
<Claymorphic onClick={() => console.log('Clicked!')}>
|
|
20
|
+
Click Me
|
|
21
|
+
</Claymorphic>
|
|
22
|
+
|
|
23
|
+
<GlassCard>
|
|
24
|
+
Glass Button
|
|
25
|
+
</GlassCard>
|
|
26
|
+
|
|
27
|
+
<NeumorphicSoft>
|
|
28
|
+
Soft Button
|
|
29
|
+
</NeumorphicSoft>
|
|
30
|
+
</div>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Available Components
|
|
36
|
+
|
|
37
|
+
- **Claymorphic** - Modern clay-like design with soft shadows
|
|
38
|
+
- **GlassCard** - Glassmorphism design
|
|
39
|
+
- **NeumorphicSoft** - Soft neumorphic design
|
|
40
|
+
- **Brutalist** - Minimal brutalist design
|
|
41
|
+
- **NeonBorder** - Neon border effect
|
|
42
|
+
- **GradientShadow** - Gradient with shadow effect
|
|
43
|
+
- **ModernMinimal** - Clean minimal design
|
|
44
|
+
- **GlitchEffect** - Glitch animation effect
|
|
45
|
+
- **LiquidGradient** - Liquid gradient design
|
|
46
|
+
|
|
47
|
+
## Props
|
|
48
|
+
|
|
49
|
+
All components accept the following props:
|
|
50
|
+
|
|
51
|
+
- `children` (ReactNode) - Button text or content
|
|
52
|
+
- `onClick` (function) - Click handler
|
|
53
|
+
- `disabled` (boolean) - Disable state
|
|
54
|
+
- `className` (string) - Additional CSS classes
|
|
55
|
+
- `type` (string) - Button type: 'button' | 'submit' | 'reset'
|
|
56
|
+
|
|
57
|
+
## Customization
|
|
58
|
+
|
|
59
|
+
All components use Tailwind CSS classes and can be customized:
|
|
60
|
+
|
|
61
|
+
```jsx
|
|
62
|
+
<Claymorphic className="px-8 py-4">
|
|
63
|
+
Custom Button
|
|
64
|
+
</Claymorphic>
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## License
|
|
68
|
+
|
|
69
|
+
MIT
|
|
70
|
+
|
|
71
|
+
## Support
|
|
72
|
+
|
|
73
|
+
For issues and questions, visit [GitHub](https://github.com/devchauhann/coolbuttons)
|
|
@@ -0,0 +1,874 @@
|
|
|
1
|
+
import ie, { forwardRef as Y, createElement as T } from "react";
|
|
2
|
+
var y = { exports: {} }, h = {};
|
|
3
|
+
/**
|
|
4
|
+
* @license React
|
|
5
|
+
* react-jsx-runtime.production.js
|
|
6
|
+
*
|
|
7
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
8
|
+
*
|
|
9
|
+
* This source code is licensed under the MIT license found in the
|
|
10
|
+
* LICENSE file in the root directory of this source tree.
|
|
11
|
+
*/
|
|
12
|
+
var H;
|
|
13
|
+
function le() {
|
|
14
|
+
if (H) return h;
|
|
15
|
+
H = 1;
|
|
16
|
+
var o = Symbol.for("react.transitional.element"), c = Symbol.for("react.fragment");
|
|
17
|
+
function p(x, d, l) {
|
|
18
|
+
var u = null;
|
|
19
|
+
if (l !== void 0 && (u = "" + l), d.key !== void 0 && (u = "" + d.key), "key" in d) {
|
|
20
|
+
l = {};
|
|
21
|
+
for (var b in d)
|
|
22
|
+
b !== "key" && (l[b] = d[b]);
|
|
23
|
+
} else l = d;
|
|
24
|
+
return d = l.ref, {
|
|
25
|
+
$$typeof: o,
|
|
26
|
+
type: x,
|
|
27
|
+
key: u,
|
|
28
|
+
ref: d !== void 0 ? d : null,
|
|
29
|
+
props: l
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
return h.Fragment = c, h.jsx = p, h.jsxs = p, h;
|
|
33
|
+
}
|
|
34
|
+
var _ = {};
|
|
35
|
+
/**
|
|
36
|
+
* @license React
|
|
37
|
+
* react-jsx-runtime.development.js
|
|
38
|
+
*
|
|
39
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
40
|
+
*
|
|
41
|
+
* This source code is licensed under the MIT license found in the
|
|
42
|
+
* LICENSE file in the root directory of this source tree.
|
|
43
|
+
*/
|
|
44
|
+
var U;
|
|
45
|
+
function de() {
|
|
46
|
+
return U || (U = 1, process.env.NODE_ENV !== "production" && (function() {
|
|
47
|
+
function o(r) {
|
|
48
|
+
if (r == null) return null;
|
|
49
|
+
if (typeof r == "function")
|
|
50
|
+
return r.$$typeof === oe ? null : r.displayName || r.name || null;
|
|
51
|
+
if (typeof r == "string") return r;
|
|
52
|
+
switch (r) {
|
|
53
|
+
case E:
|
|
54
|
+
return "Fragment";
|
|
55
|
+
case J:
|
|
56
|
+
return "Profiler";
|
|
57
|
+
case V:
|
|
58
|
+
return "StrictMode";
|
|
59
|
+
case ee:
|
|
60
|
+
return "Suspense";
|
|
61
|
+
case re:
|
|
62
|
+
return "SuspenseList";
|
|
63
|
+
case ae:
|
|
64
|
+
return "Activity";
|
|
65
|
+
}
|
|
66
|
+
if (typeof r == "object")
|
|
67
|
+
switch (typeof r.tag == "number" && console.error(
|
|
68
|
+
"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
|
|
69
|
+
), r.$$typeof) {
|
|
70
|
+
case W:
|
|
71
|
+
return "Portal";
|
|
72
|
+
case Q:
|
|
73
|
+
return r.displayName || "Context";
|
|
74
|
+
case Z:
|
|
75
|
+
return (r._context.displayName || "Context") + ".Consumer";
|
|
76
|
+
case K:
|
|
77
|
+
var a = r.render;
|
|
78
|
+
return r = r.displayName, r || (r = a.displayName || a.name || "", r = r !== "" ? "ForwardRef(" + r + ")" : "ForwardRef"), r;
|
|
79
|
+
case te:
|
|
80
|
+
return a = r.displayName || null, a !== null ? a : o(r.type) || "Memo";
|
|
81
|
+
case k:
|
|
82
|
+
a = r._payload, r = r._init;
|
|
83
|
+
try {
|
|
84
|
+
return o(r(a));
|
|
85
|
+
} catch {
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
return null;
|
|
89
|
+
}
|
|
90
|
+
function c(r) {
|
|
91
|
+
return "" + r;
|
|
92
|
+
}
|
|
93
|
+
function p(r) {
|
|
94
|
+
try {
|
|
95
|
+
c(r);
|
|
96
|
+
var a = !1;
|
|
97
|
+
} catch {
|
|
98
|
+
a = !0;
|
|
99
|
+
}
|
|
100
|
+
if (a) {
|
|
101
|
+
a = console;
|
|
102
|
+
var n = a.error, s = typeof Symbol == "function" && Symbol.toStringTag && r[Symbol.toStringTag] || r.constructor.name || "Object";
|
|
103
|
+
return n.call(
|
|
104
|
+
a,
|
|
105
|
+
"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
|
|
106
|
+
s
|
|
107
|
+
), c(r);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
function x(r) {
|
|
111
|
+
if (r === E) return "<>";
|
|
112
|
+
if (typeof r == "object" && r !== null && r.$$typeof === k)
|
|
113
|
+
return "<...>";
|
|
114
|
+
try {
|
|
115
|
+
var a = o(r);
|
|
116
|
+
return a ? "<" + a + ">" : "<...>";
|
|
117
|
+
} catch {
|
|
118
|
+
return "<...>";
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
function d() {
|
|
122
|
+
var r = R.A;
|
|
123
|
+
return r === null ? null : r.getOwner();
|
|
124
|
+
}
|
|
125
|
+
function l() {
|
|
126
|
+
return Error("react-stack-top-frame");
|
|
127
|
+
}
|
|
128
|
+
function u(r) {
|
|
129
|
+
if (O.call(r, "key")) {
|
|
130
|
+
var a = Object.getOwnPropertyDescriptor(r, "key").get;
|
|
131
|
+
if (a && a.isReactWarning) return !1;
|
|
132
|
+
}
|
|
133
|
+
return r.key !== void 0;
|
|
134
|
+
}
|
|
135
|
+
function b(r, a) {
|
|
136
|
+
function n() {
|
|
137
|
+
L || (L = !0, console.error(
|
|
138
|
+
"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
|
|
139
|
+
a
|
|
140
|
+
));
|
|
141
|
+
}
|
|
142
|
+
n.isReactWarning = !0, Object.defineProperty(r, "key", {
|
|
143
|
+
get: n,
|
|
144
|
+
configurable: !0
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
function N() {
|
|
148
|
+
var r = o(this.type);
|
|
149
|
+
return C[r] || (C[r] = !0, console.error(
|
|
150
|
+
"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
|
|
151
|
+
)), r = this.props.ref, r !== void 0 ? r : null;
|
|
152
|
+
}
|
|
153
|
+
function j(r, a, n, s, w, z) {
|
|
154
|
+
var i = n.ref;
|
|
155
|
+
return r = {
|
|
156
|
+
$$typeof: P,
|
|
157
|
+
type: r,
|
|
158
|
+
key: a,
|
|
159
|
+
props: n,
|
|
160
|
+
_owner: s
|
|
161
|
+
}, (i !== void 0 ? i : null) !== null ? Object.defineProperty(r, "ref", {
|
|
162
|
+
enumerable: !1,
|
|
163
|
+
get: N
|
|
164
|
+
}) : Object.defineProperty(r, "ref", { enumerable: !1, value: null }), r._store = {}, Object.defineProperty(r._store, "validated", {
|
|
165
|
+
configurable: !1,
|
|
166
|
+
enumerable: !1,
|
|
167
|
+
writable: !0,
|
|
168
|
+
value: 0
|
|
169
|
+
}), Object.defineProperty(r, "_debugInfo", {
|
|
170
|
+
configurable: !1,
|
|
171
|
+
enumerable: !1,
|
|
172
|
+
writable: !0,
|
|
173
|
+
value: null
|
|
174
|
+
}), Object.defineProperty(r, "_debugStack", {
|
|
175
|
+
configurable: !1,
|
|
176
|
+
enumerable: !1,
|
|
177
|
+
writable: !0,
|
|
178
|
+
value: w
|
|
179
|
+
}), Object.defineProperty(r, "_debugTask", {
|
|
180
|
+
configurable: !1,
|
|
181
|
+
enumerable: !1,
|
|
182
|
+
writable: !0,
|
|
183
|
+
value: z
|
|
184
|
+
}), Object.freeze && (Object.freeze(r.props), Object.freeze(r)), r;
|
|
185
|
+
}
|
|
186
|
+
function v(r, a, n, s, w, z) {
|
|
187
|
+
var i = a.children;
|
|
188
|
+
if (i !== void 0)
|
|
189
|
+
if (s)
|
|
190
|
+
if (ne(i)) {
|
|
191
|
+
for (s = 0; s < i.length; s++)
|
|
192
|
+
M(i[s]);
|
|
193
|
+
Object.freeze && Object.freeze(i);
|
|
194
|
+
} else
|
|
195
|
+
console.error(
|
|
196
|
+
"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
|
|
197
|
+
);
|
|
198
|
+
else M(i);
|
|
199
|
+
if (O.call(a, "key")) {
|
|
200
|
+
i = o(r);
|
|
201
|
+
var g = Object.keys(a).filter(function(se) {
|
|
202
|
+
return se !== "key";
|
|
203
|
+
});
|
|
204
|
+
s = 0 < g.length ? "{key: someKey, " + g.join(": ..., ") + ": ...}" : "{key: someKey}", F[i + s] || (g = 0 < g.length ? "{" + g.join(": ..., ") + ": ...}" : "{}", console.error(
|
|
205
|
+
`A props object containing a "key" prop is being spread into JSX:
|
|
206
|
+
let props = %s;
|
|
207
|
+
<%s {...props} />
|
|
208
|
+
React keys must be passed directly to JSX without using spread:
|
|
209
|
+
let props = %s;
|
|
210
|
+
<%s key={someKey} {...props} />`,
|
|
211
|
+
s,
|
|
212
|
+
i,
|
|
213
|
+
g,
|
|
214
|
+
i
|
|
215
|
+
), F[i + s] = !0);
|
|
216
|
+
}
|
|
217
|
+
if (i = null, n !== void 0 && (p(n), i = "" + n), u(a) && (p(a.key), i = "" + a.key), "key" in a) {
|
|
218
|
+
n = {};
|
|
219
|
+
for (var I in a)
|
|
220
|
+
I !== "key" && (n[I] = a[I]);
|
|
221
|
+
} else n = a;
|
|
222
|
+
return i && b(
|
|
223
|
+
n,
|
|
224
|
+
typeof r == "function" ? r.displayName || r.name || "Unknown" : r
|
|
225
|
+
), j(
|
|
226
|
+
r,
|
|
227
|
+
i,
|
|
228
|
+
n,
|
|
229
|
+
d(),
|
|
230
|
+
w,
|
|
231
|
+
z
|
|
232
|
+
);
|
|
233
|
+
}
|
|
234
|
+
function M(r) {
|
|
235
|
+
S(r) ? r._store && (r._store.validated = 1) : typeof r == "object" && r !== null && r.$$typeof === k && (r._payload.status === "fulfilled" ? S(r._payload.value) && r._payload.value._store && (r._payload.value._store.validated = 1) : r._store && (r._store.validated = 1));
|
|
236
|
+
}
|
|
237
|
+
function S(r) {
|
|
238
|
+
return typeof r == "object" && r !== null && r.$$typeof === P;
|
|
239
|
+
}
|
|
240
|
+
var m = ie, P = Symbol.for("react.transitional.element"), W = Symbol.for("react.portal"), E = Symbol.for("react.fragment"), V = Symbol.for("react.strict_mode"), J = Symbol.for("react.profiler"), Z = Symbol.for("react.consumer"), Q = Symbol.for("react.context"), K = Symbol.for("react.forward_ref"), ee = Symbol.for("react.suspense"), re = Symbol.for("react.suspense_list"), te = Symbol.for("react.memo"), k = Symbol.for("react.lazy"), ae = Symbol.for("react.activity"), oe = Symbol.for("react.client.reference"), R = m.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, O = Object.prototype.hasOwnProperty, ne = Array.isArray, A = console.createTask ? console.createTask : function() {
|
|
241
|
+
return null;
|
|
242
|
+
};
|
|
243
|
+
m = {
|
|
244
|
+
react_stack_bottom_frame: function(r) {
|
|
245
|
+
return r();
|
|
246
|
+
}
|
|
247
|
+
};
|
|
248
|
+
var L, C = {}, G = m.react_stack_bottom_frame.bind(
|
|
249
|
+
m,
|
|
250
|
+
l
|
|
251
|
+
)(), D = A(x(l)), F = {};
|
|
252
|
+
_.Fragment = E, _.jsx = function(r, a, n) {
|
|
253
|
+
var s = 1e4 > R.recentlyCreatedOwnerStacks++;
|
|
254
|
+
return v(
|
|
255
|
+
r,
|
|
256
|
+
a,
|
|
257
|
+
n,
|
|
258
|
+
!1,
|
|
259
|
+
s ? Error("react-stack-top-frame") : G,
|
|
260
|
+
s ? A(x(r)) : D
|
|
261
|
+
);
|
|
262
|
+
}, _.jsxs = function(r, a, n) {
|
|
263
|
+
var s = 1e4 > R.recentlyCreatedOwnerStacks++;
|
|
264
|
+
return v(
|
|
265
|
+
r,
|
|
266
|
+
a,
|
|
267
|
+
n,
|
|
268
|
+
!0,
|
|
269
|
+
s ? Error("react-stack-top-frame") : G,
|
|
270
|
+
s ? A(x(r)) : D
|
|
271
|
+
);
|
|
272
|
+
};
|
|
273
|
+
})()), _;
|
|
274
|
+
}
|
|
275
|
+
var $;
|
|
276
|
+
function ce() {
|
|
277
|
+
return $ || ($ = 1, process.env.NODE_ENV === "production" ? y.exports = le() : y.exports = de()), y.exports;
|
|
278
|
+
}
|
|
279
|
+
var e = ce(), t = /* @__PURE__ */ ((o) => (o.ESSENTIAL = "Essential", o.RETRO = "Retro", o.MODERN = "Modern", o.GLASSMORPHIC = "Glassmorphic", o.NEUMORPHIC = "Neumorphic", o.NEON = "Neon", o.GRADIENT = "Gradient", o.MINIMAL = "Minimal", o.ANIMATED = "Animated", o.EXPERIMENTAL = "Experimental", o))(t || {});
|
|
280
|
+
const Ne = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-indigo-500 text-white font-black rounded-[2rem] shadow-[inset_-4px_-4px_8px_rgba(0,0,0,0.3),inset_4px_4px_8px_rgba(255,255,255,0.3),8px_8px_16px_rgba(0,0,0,0.15)] hover:scale-110 active:scale-95 transition-all", children: "Plasticine" });
|
|
281
|
+
t.NEUMORPHIC;
|
|
282
|
+
const je = () => /* @__PURE__ */ e.jsxs("div", { className: "p-10 relative group", children: [
|
|
283
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 right-0 w-32 h-32 bg-blue-500/10 blur-[60px] rounded-full group-hover:scale-110 transition-transform duration-700" }),
|
|
284
|
+
/* @__PURE__ */ e.jsx("button", { className: "relative px-10 py-5 bg-white/20 dark:bg-white/5 border border-white/60 dark:border-white/10 backdrop-blur-2xl rounded-[2.5rem] shadow-[0_25px_50px_-12px_rgba(0,0,0,0.1),inset_0_1px_0_rgba(255,255,255,0.8)] text-blue-950 dark:text-blue-100 font-black hover:bg-white/30 transition-all active:scale-95", children: "Sapphire Slab" })
|
|
285
|
+
] });
|
|
286
|
+
t.GLASSMORPHIC;
|
|
287
|
+
const Ee = () => /* @__PURE__ */ e.jsx("button", { className: "relative px-10 py-3.5 bg-gradient-to-br from-[#f5f5f7] to-[#e8e8ed] dark:from-[#1a1a1f] dark:to-[#0f0f14] text-gray-700 dark:text-gray-300 font-semibold rounded-3xl shadow-[0_20px_40px_-10px_rgba(0,0,0,0.1),0_-8px_16px_-8px_rgba(255,255,255,0.5)] dark:shadow-[0_20px_40px_-10px_rgba(0,0,0,0.8),0_-8px_16px_-8px_rgba(255,255,255,0.05)] hover:shadow-[0_25px_50px_-12px_rgba(0,0,0,0.15),0_-10px_20px_-10px_rgba(255,255,255,0.6)] dark:hover:shadow-[0_25px_50px_-12px_rgba(0,0,0,0.9),0_-10px_20px_-10px_rgba(255,255,255,0.08)] active:shadow-[inset_0_8px_16px_-8px_rgba(0,0,0,0.2),inset_0_-8px_16px_-8px_rgba(255,255,255,0.4)] dark:active:shadow-[inset_0_8px_16px_-8px_rgba(0,0,0,0.6),inset_0_-8px_16px_-8px_rgba(255,255,255,0.05)] transition-all duration-300 active:scale-95", children: "Soft Extrude" });
|
|
288
|
+
t.NEUMORPHIC;
|
|
289
|
+
const ke = () => /* @__PURE__ */ e.jsx("button", { className: "px-6 py-3 bg-white border-4 border-black text-black font-black text-lg shadow-[6px_6px_0_0_#000] active:shadow-none active:translate-x-[4px] active:translate-y-[4px] transition-all", children: "NO RULES" });
|
|
290
|
+
t.RETRO;
|
|
291
|
+
const Re = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl border border-zinc-700 hover:border-orange-500 hover:shadow-[0_0_15px_rgba(255,122,0,0.5)] transition-all duration-300", children: "Neon Border" });
|
|
292
|
+
t.GRADIENT;
|
|
293
|
+
const Ae = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-indigo-600 text-white font-bold rounded-xl shadow-[0_10px_30px_rgba(79,70,229,0.3)] hover:shadow-[0_15px_40px_rgba(79,70,229,0.6)] hover:-translate-y-1 transition-all", children: "Color Shadow" });
|
|
294
|
+
t.ESSENTIAL;
|
|
295
|
+
const ze = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-2 border-b-2 border-zinc-200 text-zinc-400 font-medium hover:text-zinc-900 hover:border-zinc-900 transition-all text-sm tracking-tight", children: "Slight Underline" });
|
|
296
|
+
t.MINIMAL;
|
|
297
|
+
const Ie = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-zinc-900 text-white font-black italic rounded-none border-r-4 border-orange-500 hover:animate-pulse hover:shadow-[4px_0_0_#0ea5e9,-4px_0_0_#f43f5e] transition-shadow", children: "GLITCH_ME" });
|
|
298
|
+
t.EXPERIMENTAL;
|
|
299
|
+
const Te = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-gradient-to-r from-orange-400 via-rose-400 to-indigo-500 bg-[length:200%_auto] text-white font-bold rounded-2xl hover:bg-[position:right_center] transition-all duration-500 shadow-xl shadow-orange-200", children: "Liquid Flow" });
|
|
300
|
+
t.ANIMATED;
|
|
301
|
+
const Me = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-[#003300] text-[#00ff00] font-mono font-bold border-2 border-[#00ff00] shadow-[0_0_15px_#00ff00] hover:bg-[#00ff00] hover:text-black transition-all", children: "INSERT COIN" });
|
|
302
|
+
t.RETRO;
|
|
303
|
+
/**
|
|
304
|
+
* @license lucide-react v0.475.0 - ISC
|
|
305
|
+
*
|
|
306
|
+
* This source code is licensed under the ISC license.
|
|
307
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
308
|
+
*/
|
|
309
|
+
const pe = (o) => o.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), B = (...o) => o.filter((c, p, x) => !!c && c.trim() !== "" && x.indexOf(c) === p).join(" ").trim();
|
|
310
|
+
/**
|
|
311
|
+
* @license lucide-react v0.475.0 - ISC
|
|
312
|
+
*
|
|
313
|
+
* This source code is licensed under the ISC license.
|
|
314
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
315
|
+
*/
|
|
316
|
+
var xe = {
|
|
317
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
318
|
+
width: 24,
|
|
319
|
+
height: 24,
|
|
320
|
+
viewBox: "0 0 24 24",
|
|
321
|
+
fill: "none",
|
|
322
|
+
stroke: "currentColor",
|
|
323
|
+
strokeWidth: 2,
|
|
324
|
+
strokeLinecap: "round",
|
|
325
|
+
strokeLinejoin: "round"
|
|
326
|
+
};
|
|
327
|
+
/**
|
|
328
|
+
* @license lucide-react v0.475.0 - ISC
|
|
329
|
+
*
|
|
330
|
+
* This source code is licensed under the ISC license.
|
|
331
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
332
|
+
*/
|
|
333
|
+
const ue = Y(
|
|
334
|
+
({
|
|
335
|
+
color: o = "currentColor",
|
|
336
|
+
size: c = 24,
|
|
337
|
+
strokeWidth: p = 2,
|
|
338
|
+
absoluteStrokeWidth: x,
|
|
339
|
+
className: d = "",
|
|
340
|
+
children: l,
|
|
341
|
+
iconNode: u,
|
|
342
|
+
...b
|
|
343
|
+
}, N) => T(
|
|
344
|
+
"svg",
|
|
345
|
+
{
|
|
346
|
+
ref: N,
|
|
347
|
+
...xe,
|
|
348
|
+
width: c,
|
|
349
|
+
height: c,
|
|
350
|
+
stroke: o,
|
|
351
|
+
strokeWidth: x ? Number(p) * 24 / Number(c) : p,
|
|
352
|
+
className: B("lucide", d),
|
|
353
|
+
...b
|
|
354
|
+
},
|
|
355
|
+
[
|
|
356
|
+
...u.map(([j, v]) => T(j, v)),
|
|
357
|
+
...Array.isArray(l) ? l : [l]
|
|
358
|
+
]
|
|
359
|
+
)
|
|
360
|
+
);
|
|
361
|
+
/**
|
|
362
|
+
* @license lucide-react v0.475.0 - ISC
|
|
363
|
+
*
|
|
364
|
+
* This source code is licensed under the ISC license.
|
|
365
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
366
|
+
*/
|
|
367
|
+
const f = (o, c) => {
|
|
368
|
+
const p = Y(
|
|
369
|
+
({ className: x, ...d }, l) => T(ue, {
|
|
370
|
+
ref: l,
|
|
371
|
+
iconNode: c,
|
|
372
|
+
className: B(`lucide-${pe(o)}`, x),
|
|
373
|
+
...d
|
|
374
|
+
})
|
|
375
|
+
);
|
|
376
|
+
return p.displayName = `${o}`, p;
|
|
377
|
+
};
|
|
378
|
+
/**
|
|
379
|
+
* @license lucide-react v0.475.0 - ISC
|
|
380
|
+
*
|
|
381
|
+
* This source code is licensed under the ISC license.
|
|
382
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
383
|
+
*/
|
|
384
|
+
const be = [
|
|
385
|
+
["path", { d: "M5 12h14", key: "1ays0h" }],
|
|
386
|
+
["path", { d: "m12 5 7 7-7 7", key: "xquz4c" }]
|
|
387
|
+
], ge = f("ArrowRight", be);
|
|
388
|
+
/**
|
|
389
|
+
* @license lucide-react v0.475.0 - ISC
|
|
390
|
+
*
|
|
391
|
+
* This source code is licensed under the ISC license.
|
|
392
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
393
|
+
*/
|
|
394
|
+
const he = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]], X = f("ChevronRight", he);
|
|
395
|
+
/**
|
|
396
|
+
* @license lucide-react v0.475.0 - ISC
|
|
397
|
+
*
|
|
398
|
+
* This source code is licensed under the ISC license.
|
|
399
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
400
|
+
*/
|
|
401
|
+
const _e = [
|
|
402
|
+
["path", { d: "M5 12h14", key: "1ays0h" }],
|
|
403
|
+
["path", { d: "M12 5v14", key: "s699le" }]
|
|
404
|
+
], fe = f("Plus", _e);
|
|
405
|
+
/**
|
|
406
|
+
* @license lucide-react v0.475.0 - ISC
|
|
407
|
+
*
|
|
408
|
+
* This source code is licensed under the ISC license.
|
|
409
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
410
|
+
*/
|
|
411
|
+
const ve = [
|
|
412
|
+
[
|
|
413
|
+
"path",
|
|
414
|
+
{
|
|
415
|
+
d: "M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",
|
|
416
|
+
key: "r04s7s"
|
|
417
|
+
}
|
|
418
|
+
]
|
|
419
|
+
], me = f("Star", ve);
|
|
420
|
+
/**
|
|
421
|
+
* @license lucide-react v0.475.0 - ISC
|
|
422
|
+
*
|
|
423
|
+
* This source code is licensed under the ISC license.
|
|
424
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
425
|
+
*/
|
|
426
|
+
const we = [
|
|
427
|
+
[
|
|
428
|
+
"path",
|
|
429
|
+
{
|
|
430
|
+
d: "M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",
|
|
431
|
+
key: "1xq2db"
|
|
432
|
+
}
|
|
433
|
+
]
|
|
434
|
+
], q = f("Zap", we), Se = () => /* @__PURE__ */ e.jsxs("button", { className: "flex items-center gap-1 p-1 bg-zinc-100 rounded-2xl group hover:bg-zinc-200 transition-colors", children: [
|
|
435
|
+
/* @__PURE__ */ e.jsx("div", { className: "bg-white p-2 rounded-xl shadow-sm group-hover:scale-95 transition-transform", children: /* @__PURE__ */ e.jsx(q, { size: 18, className: "text-orange-500" }) }),
|
|
436
|
+
/* @__PURE__ */ e.jsx("span", { className: "px-3 text-sm font-bold text-zinc-700", children: "Quick Start" }),
|
|
437
|
+
/* @__PURE__ */ e.jsx("div", { className: "pr-2", children: /* @__PURE__ */ e.jsx(X, { size: 16, className: "text-zinc-400 group-hover:translate-x-1 transition-transform" }) })
|
|
438
|
+
] });
|
|
439
|
+
t.MINIMAL;
|
|
440
|
+
const Pe = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-zinc-950 text-white font-bold rounded-xl overflow-hidden group", children: [
|
|
441
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Neon Beam" }),
|
|
442
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-[-100%] bg-[conic-gradient(from_0deg,transparent,transparent,#ff7a00,transparent)] animate-[spin_4s_linear_infinite] group-hover:animate-[spin_1s_linear_infinite]" }),
|
|
443
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-[2px] bg-zinc-950 rounded-xl" }),
|
|
444
|
+
/* @__PURE__ */ e.jsx("style", { children: "@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }" })
|
|
445
|
+
] });
|
|
446
|
+
t.GRADIENT;
|
|
447
|
+
const Oe = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-white text-zinc-900 font-bold group", children: [
|
|
448
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Border Trace" }),
|
|
449
|
+
/* @__PURE__ */ e.jsx("span", { className: "absolute inset-0 border-2 border-zinc-100 group-hover:border-orange-500 transition-colors duration-300" }),
|
|
450
|
+
/* @__PURE__ */ e.jsx("span", { className: "absolute top-0 left-0 h-0.5 w-0 bg-orange-500 group-hover:w-full transition-all duration-300" }),
|
|
451
|
+
/* @__PURE__ */ e.jsx("span", { className: "absolute bottom-0 right-0 h-0.5 w-0 bg-orange-500 group-hover:w-full transition-all duration-300" }),
|
|
452
|
+
/* @__PURE__ */ e.jsx("span", { className: "absolute top-0 right-0 w-0.5 h-0 bg-orange-500 group-hover:h-full transition-all duration-300" }),
|
|
453
|
+
/* @__PURE__ */ e.jsx("span", { className: "absolute bottom-0 left-0 w-0.5 h-0 bg-orange-500 group-hover:h-full transition-all duration-300" })
|
|
454
|
+
] });
|
|
455
|
+
t.ANIMATED;
|
|
456
|
+
const Le = () => /* @__PURE__ */ e.jsxs("button", { className: "flex items-center gap-3 px-8 py-3 bg-zinc-900 text-white font-bold rounded-full group", children: [
|
|
457
|
+
/* @__PURE__ */ e.jsx(me, { className: "group-hover:animate-bounce text-orange-400", size: 18 }),
|
|
458
|
+
/* @__PURE__ */ e.jsx("span", { children: "Bouncy Star" })
|
|
459
|
+
] });
|
|
460
|
+
t.ANIMATED;
|
|
461
|
+
const Ce = () => /* @__PURE__ */ e.jsxs("button", { className: "flex items-center gap-2 px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl group", children: [
|
|
462
|
+
/* @__PURE__ */ e.jsx("span", { children: "Continue" }),
|
|
463
|
+
/* @__PURE__ */ e.jsx("div", { className: "w-0 overflow-hidden group-hover:w-4 transition-all duration-300", children: /* @__PURE__ */ e.jsx(X, { size: 18, className: "translate-x-[-10px] group-hover:translate-x-0 transition-transform duration-300" }) })
|
|
464
|
+
] });
|
|
465
|
+
t.ANIMATED;
|
|
466
|
+
const Ge = () => /* @__PURE__ */ e.jsx("button", { className: "px-6 py-2 bg-[#dfdfdf] text-black font-medium border-t-2 border-l-2 border-[#ffffff] border-b-2 border-r-2 border-[#808080] active:border-t-2 active:border-l-2 active:border-[#808080] active:border-b-2 active:border-r-2 active:border-[#ffffff] shadow-sm", children: "Submit Form" });
|
|
467
|
+
t.RETRO;
|
|
468
|
+
const De = () => /* @__PURE__ */ e.jsx("button", { className: "px-12 py-4 bg-indigo-500 text-white font-black rounded-full shadow-[inset_-8px_-8px_16px_rgba(0,0,0,0.15),inset_8px_8px_16px_rgba(255,255,255,0.2),12px_12px_24px_rgba(79,70,229,0.2)] hover:scale-110 active:scale-90 transition-all duration-300", children: "Soft Clay" });
|
|
469
|
+
t.NEUMORPHIC;
|
|
470
|
+
const Fe = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-white text-zinc-900 font-bold rounded-xl border-2 border-zinc-900 shadow-[inset_0_0_0_2px_white] hover:bg-zinc-900 hover:text-white transition-all active:scale-95", children: "Double Frame" });
|
|
471
|
+
t.ESSENTIAL;
|
|
472
|
+
const He = () => /* @__PURE__ */ e.jsx("button", { className: "px-10 py-3 bg-blue-600 text-white font-black skew-x-[-12deg] shadow-[4px_4px_0_#1e3a8a] active:shadow-none active:translate-x-1 active:translate-y-1 transition-all uppercase italic", children: "Bevel Drive" });
|
|
473
|
+
t.RETRO;
|
|
474
|
+
const Ue = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-zinc-950 text-cyan-400 font-bold border-2 border-cyan-400/50 rounded-lg hover:shadow-[0_0_20px_#22d3ee,inset_0_0_10px_#22d3ee] hover:border-cyan-400 transition-all duration-300 tracking-tighter active:scale-95", children: "CORE_ACCESS" });
|
|
475
|
+
t.EXPERIMENTAL;
|
|
476
|
+
const $e = () => /* @__PURE__ */ e.jsxs("button", { className: "relative p-[1.5px] rounded-2xl bg-gradient-to-tr from-cyan-400 via-fuchsia-500 to-yellow-400 hover:scale-105 active:scale-95 transition-all duration-300 group", children: [
|
|
477
|
+
/* @__PURE__ */ e.jsx("div", { className: "px-8 py-3 bg-zinc-950 rounded-2xl flex items-center justify-center", children: /* @__PURE__ */ e.jsx("span", { className: "bg-gradient-to-r from-cyan-400 via-fuchsia-500 to-yellow-400 bg-clip-text text-transparent font-black uppercase tracking-[0.2em] text-[11px] group-hover:drop-shadow-[0_0_8px_rgba(34,211,238,0.5)] transition-all", children: "Mesh Flow" }) }),
|
|
478
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-gradient-to-tr from-cyan-400 via-fuchsia-500 to-yellow-400 blur-xl opacity-0 group-hover:opacity-20 transition-opacity" })
|
|
479
|
+
] });
|
|
480
|
+
t.GRADIENT;
|
|
481
|
+
const Ye = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-zinc-900 text-cyan-400 font-bold uppercase tracking-widest [clip-path:polygon(0%_15%,15%_0%,100%_0%,100%_85%,85%_100%,0%_100%)] hover:bg-cyan-400 hover:text-black transition-all group overflow-hidden", children: [
|
|
482
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 left-0 w-full h-full bg-gradient-to-r from-transparent via-cyan-400/20 to-transparent -translate-x-full group-hover:translate-x-full transition-transform duration-1000" }),
|
|
483
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Cyber_Slice" })
|
|
484
|
+
] });
|
|
485
|
+
t.EXPERIMENTAL;
|
|
486
|
+
const Be = () => /* @__PURE__ */ e.jsx("button", { className: "relative px-8 py-3 bg-transparent border-2 border-cyan-400 text-cyan-400 font-black italic rounded-none [clip-path:polygon(0_0,100%_0,100%_70%,85%_100%,0_100%)] hover:bg-cyan-400 hover:text-black hover:shadow-[0_0_20px_rgba(34,211,238,0.5)] transition-all", children: "CYBER_UP" });
|
|
487
|
+
t.EXPERIMENTAL;
|
|
488
|
+
const Xe = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 border-4 border-dashed border-zinc-200 text-zinc-300 font-black rounded-full hover:border-solid hover:border-orange-500 hover:text-orange-500 hover:bg-orange-50 transition-all duration-300", children: "REVEAL_SOLID" });
|
|
489
|
+
t.EXPERIMENTAL;
|
|
490
|
+
const qe = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-white text-zinc-900 font-bold rounded-lg group", children: [
|
|
491
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Dash Spin" }),
|
|
492
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 border-2 border-dashed border-zinc-200 rounded-lg group-hover:animate-[spin_4s_linear_infinite] group-hover:border-orange-500 transition-colors" })
|
|
493
|
+
] });
|
|
494
|
+
t.ANIMATED;
|
|
495
|
+
const We = () => /* @__PURE__ */ e.jsxs("div", { className: "p-16 relative group", children: [
|
|
496
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-indigo-500/5 blur-[100px] group-hover:bg-indigo-500/10 transition-colors" }),
|
|
497
|
+
/* @__PURE__ */ e.jsx("button", { className: "relative px-12 py-5 bg-indigo-500/10 backdrop-blur-[32px] border border-indigo-500/20 text-indigo-600 dark:text-indigo-400 font-bold rounded-3xl shadow-2xl hover:bg-indigo-500/15 transition-all", children: "Cloud Blur" })
|
|
498
|
+
] });
|
|
499
|
+
t.GLASSMORPHIC;
|
|
500
|
+
const Ve = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-zinc-100 text-zinc-900 font-bold border-b-4 border-zinc-300 rounded-lg group active:border-b-0 active:translate-y-1 transition-all", children: [
|
|
501
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10 group-hover:text-white transition-colors duration-200", children: "Depth Slide" }),
|
|
502
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-zinc-900 scale-x-0 group-hover:scale-x-100 transition-transform origin-left duration-300 -z-0" })
|
|
503
|
+
] });
|
|
504
|
+
t.RETRO;
|
|
505
|
+
const Je = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-orange-500 text-white font-black rounded-lg overflow-hidden group", children: [
|
|
506
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Danger Zone" }),
|
|
507
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 opacity-20 bg-[repeating-linear-gradient(45deg,transparent,transparent_10px,#000_10px,#000_20px)] animate-[move-bg_2s_linear_infinite]" }),
|
|
508
|
+
/* @__PURE__ */ e.jsx("style", { children: `
|
|
509
|
+
@keyframes move-bg {
|
|
510
|
+
0% { background-position: 0 0; }
|
|
511
|
+
100% { background-position: 40px 0; }
|
|
512
|
+
}
|
|
513
|
+
` })
|
|
514
|
+
] });
|
|
515
|
+
t.RETRO;
|
|
516
|
+
const Ze = () => /* @__PURE__ */ e.jsx("button", { className: "relative px-12 py-3 bg-zinc-900 text-white font-black [clip-path:polygon(15%_0%,85%_0%,100%_50%,85%_100%,15%_100%,0%_50%)] hover:bg-zinc-700 transition-colors active:scale-90", children: "Diamond" });
|
|
517
|
+
t.EXPERIMENTAL;
|
|
518
|
+
const Qe = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-white border-2 border-zinc-900 text-zinc-900 font-bold rounded-xl bg-[radial-gradient(#e5e7eb_1px,transparent_1px)] bg-[size:10px_10px] hover:bg-zinc-50 transition-colors", children: "Dot Matrix" });
|
|
519
|
+
t.RETRO;
|
|
520
|
+
const Ke = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-white text-zinc-900 font-bold rounded-xl border border-zinc-100 shadow-[5px_5px_0_0_#ff7a00,10px_10px_0_0_#fef3c7] hover:translate-x-1 hover:translate-y-1 hover:shadow-none transition-all duration-300", children: "Multi Layer" });
|
|
521
|
+
t.RETRO;
|
|
522
|
+
const er = () => /* @__PURE__ */ e.jsxs("button", { className: "flex px-1 items-center bg-zinc-100 rounded-full group hover:bg-zinc-900 transition-colors duration-300", children: [
|
|
523
|
+
/* @__PURE__ */ e.jsx("div", { className: "bg-white px-6 py-2 rounded-full text-zinc-900 font-bold group-hover:bg-zinc-800 group-hover:text-white transition-all", children: "Dual" }),
|
|
524
|
+
/* @__PURE__ */ e.jsx("div", { className: "px-6 py-2 text-zinc-400 font-bold group-hover:text-zinc-500 transition-all", children: "Tone" })
|
|
525
|
+
] });
|
|
526
|
+
t.MINIMAL;
|
|
527
|
+
const rr = () => /* @__PURE__ */ e.jsx("button", { className: "px-10 py-4 bg-white text-zinc-800 font-bold rounded-3xl shadow-[0_20px_50px_rgba(0,0,0,0.1)] hover:shadow-[0_10px_20px_rgba(0,0,0,0.05)] hover:translate-y-1 active:scale-95 transition-all", children: "Deep Float" }), tr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl blur-[2px] hover:blur-0 transition-all duration-500 scale-95 hover:scale-100", children: "Ghost Reveal" });
|
|
528
|
+
t.EXPERIMENTAL;
|
|
529
|
+
const ar = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl group", children: [
|
|
530
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Aura Expand" }),
|
|
531
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-orange-500 rounded-xl blur-0 group-hover:blur-xl group-hover:scale-125 opacity-0 group-hover:opacity-40 transition-all duration-500" })
|
|
532
|
+
] });
|
|
533
|
+
t.ANIMATED;
|
|
534
|
+
const or = () => /* @__PURE__ */ e.jsx("button", { className: "px-6 py-2 bg-white border-2 border-zinc-900 text-zinc-900 font-bold rounded-full hover:px-10 hover:ring-4 hover:ring-zinc-100 transition-all duration-300 active:scale-95", children: "Expand Me" });
|
|
535
|
+
t.ANIMATED;
|
|
536
|
+
const nr = () => /* @__PURE__ */ e.jsxs("div", { className: "relative group", children: [
|
|
537
|
+
/* @__PURE__ */ e.jsx("span", { className: "absolute -top-6 left-1/2 -translate-x-1/2 text-[10px] font-black text-orange-500 opacity-0 group-hover:opacity-100 group-hover:-top-8 transition-all duration-300", children: "CONFIRM?" }),
|
|
538
|
+
/* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-white border border-zinc-200 text-zinc-900 font-bold rounded-xl hover:border-orange-500 hover:text-orange-500 transition-all", children: "Action Ready" })
|
|
539
|
+
] });
|
|
540
|
+
t.MINIMAL;
|
|
541
|
+
const sr = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-10 py-3 bg-indigo-500 text-white font-black rounded-full hover:scale-105 transition-all", children: [
|
|
542
|
+
/* @__PURE__ */ e.jsx("span", { className: "absolute inset-0 rounded-full bg-indigo-400 animate-ping opacity-20" }),
|
|
543
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative", children: "Pulse Up" })
|
|
544
|
+
] });
|
|
545
|
+
t.ANIMATED;
|
|
546
|
+
const ir = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-[#ff7a00] text-white font-bold rounded-xl shadow-[0_5px_0_0_#b45309] hover:shadow-[0_15px_30px_rgba(251,146,60,0.4)] hover:-translate-y-2 transition-all duration-300", children: "Shadow Flight" });
|
|
547
|
+
t.ESSENTIAL;
|
|
548
|
+
const lr = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-zinc-900 text-white font-black group overflow-hidden", children: [
|
|
549
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Fragment_Nav" }),
|
|
550
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 left-0 w-1/2 h-full bg-white/10 -skew-x-12 translate-x-[-150%] group-hover:translate-x-[250%] transition-transform duration-700" })
|
|
551
|
+
] });
|
|
552
|
+
t.EXPERIMENTAL;
|
|
553
|
+
const dr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-white text-zinc-300 border border-zinc-100 font-bold rounded-xl hover:text-zinc-900 hover:border-zinc-900 transition-all duration-300", children: "Ghost Reveal" });
|
|
554
|
+
t.MINIMAL;
|
|
555
|
+
const cr = () => /* @__PURE__ */ e.jsxs("div", { className: "relative p-1", children: [
|
|
556
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-white/10 blur-md rounded-2xl" }),
|
|
557
|
+
/* @__PURE__ */ e.jsx("button", { className: "relative px-8 py-3 bg-white/20 border border-white/40 text-zinc-800 font-black rounded-2xl shadow-xl hover:bg-white/40 transition-all active:scale-95", children: "Dual Glass" })
|
|
558
|
+
] });
|
|
559
|
+
t.GLASSMORPHIC;
|
|
560
|
+
const pr = () => /* @__PURE__ */ e.jsxs("button", { className: "px-8 py-3 bg-zinc-900 text-white font-bold rounded-2xl relative overflow-hidden group", children: [
|
|
561
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Glass Core" }),
|
|
562
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-2 bg-white/10 backdrop-blur-md rounded-xl opacity-0 group-hover:opacity-100 transition-opacity duration-300 border border-white/20 shadow-inner" })
|
|
563
|
+
] });
|
|
564
|
+
t.GLASSMORPHIC;
|
|
565
|
+
const xr = () => /* @__PURE__ */ e.jsxs("div", { className: "p-10 relative", children: [
|
|
566
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-rose-500/5 blur-3xl rounded-full" }),
|
|
567
|
+
/* @__PURE__ */ e.jsx("button", { className: "relative px-10 py-3 bg-rose-500/10 backdrop-blur-xl border border-rose-500/20 text-rose-500 dark:text-rose-400 font-bold rounded-full shadow-lg hover:bg-rose-500/20 transition-all", children: "Frosty Pill" })
|
|
568
|
+
] });
|
|
569
|
+
t.GLASSMORPHIC;
|
|
570
|
+
const ur = () => /* @__PURE__ */ e.jsxs("div", { className: "relative p-10 group", children: [
|
|
571
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-32 h-32 bg-emerald-400/20 blur-[60px] rounded-full group-hover:bg-emerald-400/40 transition-colors duration-500" }),
|
|
572
|
+
/* @__PURE__ */ e.jsxs("button", { className: "relative px-10 py-4 bg-white/40 dark:bg-zinc-900/40 backdrop-blur-xl border border-white/60 dark:border-white/10 text-emerald-900 dark:text-emerald-100 font-black rounded-2xl shadow-[0_10px_30px_-10px_rgba(0,0,0,0.1),inset_0_1px_1px_rgba(255,255,255,0.8)] hover:scale-105 active:scale-95 transition-all overflow-hidden group/btn", children: [
|
|
573
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 left-0 w-full h-full bg-gradient-to-br from-white/40 to-transparent pointer-events-none" }),
|
|
574
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative", children: "Aurora Glass" })
|
|
575
|
+
] })
|
|
576
|
+
] });
|
|
577
|
+
t.GLASSMORPHIC;
|
|
578
|
+
const br = () => /* @__PURE__ */ e.jsxs("div", { className: "relative p-10 group", children: [
|
|
579
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-purple-500/10 blur-[80px] group-hover:bg-purple-500/20 transition-all duration-700" }),
|
|
580
|
+
/* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-white/20 dark:bg-white/5 backdrop-blur-2xl border border-white/40 dark:border-white/10 text-purple-900 dark:text-purple-100 font-black rounded-xl hover:shadow-[0_20px_40px_rgba(168,85,247,0.15)] transition-all active:scale-95", children: [
|
|
581
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-gradient-to-tr from-white/10 via-transparent to-white/20" }),
|
|
582
|
+
"Nebula Glass"
|
|
583
|
+
] })
|
|
584
|
+
] });
|
|
585
|
+
t.GLASSMORPHIC;
|
|
586
|
+
const gr = () => /* @__PURE__ */ e.jsxs("div", { className: "p-10 relative", children: [
|
|
587
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-40 h-40 bg-orange-400/10 blur-[50px]" }),
|
|
588
|
+
/* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-white/10 dark:bg-white/5 backdrop-blur-md border-2 border-white/50 dark:border-white/10 text-orange-950 dark:text-orange-100 font-black rounded-xl shadow-[inset_0_2px_15px_rgba(255,255,255,0.5),0_10px_20px_rgba(0,0,0,0.05)] hover:bg-white/20 transition-all group overflow-hidden", children: [
|
|
589
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute -inset-full bg-gradient-to-r from-transparent via-white/20 to-transparent -skew-x-45 group-hover:translate-x-full transition-transform duration-1000" }),
|
|
590
|
+
"Amber Vitrum"
|
|
591
|
+
] })
|
|
592
|
+
] });
|
|
593
|
+
t.GLASSMORPHIC;
|
|
594
|
+
const hr = () => /* @__PURE__ */ e.jsx("div", { className: "p-12 flex items-center justify-center", children: /* @__PURE__ */ e.jsxs("button", { className: "relative px-10 py-4 bg-white/40 dark:bg-white/10 border border-white/60 dark:border-white/20 text-zinc-900 dark:text-zinc-100 font-black rounded-2xl overflow-hidden group shadow-[0_10px_30px_rgba(0,0,0,0.05)] backdrop-blur-md", children: [
|
|
595
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Mirror Glass" }),
|
|
596
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 left-0 w-full h-[1px] bg-gradient-to-r from-transparent via-white/80 to-transparent" }),
|
|
597
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 left-0 w-full h-full bg-gradient-to-br from-white/30 to-transparent" }),
|
|
598
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 -left-[100%] w-full h-full bg-gradient-to-r from-transparent via-white/40 to-transparent skew-x-[-25deg] group-hover:left-[150%] transition-all duration-1000" })
|
|
599
|
+
] }) });
|
|
600
|
+
t.GLASSMORPHIC;
|
|
601
|
+
const _r = () => /* @__PURE__ */ e.jsxs("div", { className: "p-12 relative group", children: [
|
|
602
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-4 bg-cyan-400/10 blur-[40px] rounded-3xl group-hover:scale-125 transition-transform duration-700" }),
|
|
603
|
+
/* @__PURE__ */ e.jsx("button", { className: "relative px-10 py-4 bg-white/30 dark:bg-white/5 backdrop-blur-3xl border border-white/80 dark:border-white/20 text-cyan-950 dark:text-cyan-100 font-black rounded-[2rem] shadow-[0_15px_35px_-5px_rgba(0,0,0,0.1),inset_0_4px_8px_rgba(255,255,255,0.6)] hover:bg-white/40 hover:translate-y-[-2px] transition-all", children: "Crystal Prism" })
|
|
604
|
+
] });
|
|
605
|
+
t.GLASSMORPHIC;
|
|
606
|
+
const fr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-white/5 border-2 border-white/20 text-white font-bold rounded-xl backdrop-blur-sm hover:bg-white/10 hover:border-white/40 transition-all", children: "Glass Stroke" });
|
|
607
|
+
t.GLASSMORPHIC;
|
|
608
|
+
const vr = () => /* @__PURE__ */ e.jsx("button", { className: "px-6 py-2 text-zinc-400 font-bold hover:text-orange-500 hover:drop-shadow-[0_0_10px_rgba(255,122,0,0.5)] transition-all duration-300 uppercase tracking-widest text-xs", children: "Hidden Glow" });
|
|
609
|
+
t.EXPERIMENTAL;
|
|
610
|
+
const mr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-transparent border-2 border-indigo-500 text-indigo-500 font-bold rounded-xl hover:shadow-[0_0_20px_rgba(99,102,241,0.6)] hover:bg-indigo-500 hover:text-white transition-all animate-pulse hover:animate-none", children: "Glow Aura" });
|
|
611
|
+
t.EXPERIMENTAL;
|
|
612
|
+
const wr = () => /* @__PURE__ */ e.jsxs("button", { className: "px-8 py-3 bg-orange-500 text-white font-bold rounded-full relative group hover:scale-105 active:scale-95 transition-all", children: [
|
|
613
|
+
"Gooey Pop",
|
|
614
|
+
/* @__PURE__ */ e.jsx("span", { className: "absolute -top-1 -right-1 w-4 h-4 bg-orange-400 rounded-full group-hover:translate-x-4 group-hover:-translate-y-4 transition-transform duration-500" }),
|
|
615
|
+
/* @__PURE__ */ e.jsx("span", { className: "absolute -bottom-1 -left-1 w-3 h-3 bg-orange-600 rounded-full group-hover:-translate-x-3 group-hover:translate-y-3 transition-transform duration-500" })
|
|
616
|
+
] });
|
|
617
|
+
t.EXPERIMENTAL;
|
|
618
|
+
const yr = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-zinc-950 text-white font-black rounded-xl overflow-hidden group border border-white/10", children: [
|
|
619
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10 uppercase tracking-[0.2em] text-[10px]", children: "Whirlpool" }),
|
|
620
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-[-100%] bg-[conic-gradient(from_0deg,#ff7a00,#f43f5e,#8b5cf6,#06b6d4,#ff7a00)] opacity-0 group-hover:opacity-60 group-hover:animate-[spin_2s_linear_infinite] transition-opacity duration-500" }),
|
|
621
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-[2px] bg-zinc-950 rounded-lg group-hover:opacity-90 transition-opacity" }),
|
|
622
|
+
/* @__PURE__ */ e.jsx("style", { children: `
|
|
623
|
+
@keyframes spin {
|
|
624
|
+
from { transform: rotate(0deg); }
|
|
625
|
+
to { transform: rotate(360deg); }
|
|
626
|
+
}
|
|
627
|
+
` })
|
|
628
|
+
] });
|
|
629
|
+
t.GRADIENT;
|
|
630
|
+
const Nr = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-12 py-3.5 bg-gradient-to-br from-violet-600 via-indigo-500 to-cyan-400 bg-[length:300%_300%] animate-[gradient_8s_ease_infinite] text-white font-black rounded-full shadow-[0_15px_35px_-10px_rgba(79,70,229,0.4)] hover:shadow-[0_25px_50px_-12px_rgba(79,70,229,0.5)] hover:-translate-y-1 active:scale-95 transition-all", children: [
|
|
631
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10 uppercase tracking-[0.2em] text-[10px]", children: "Aurorean" }),
|
|
632
|
+
/* @__PURE__ */ e.jsx("style", { children: `
|
|
633
|
+
@keyframes gradient {
|
|
634
|
+
0% { background-position: 0% 50%; }
|
|
635
|
+
50% { background-position: 100% 50%; }
|
|
636
|
+
100% { background-position: 0% 50%; }
|
|
637
|
+
}
|
|
638
|
+
` })
|
|
639
|
+
] });
|
|
640
|
+
t.GRADIENT;
|
|
641
|
+
const jr = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-gradient-to-r from-rose-500 to-orange-500 text-white font-bold rounded-full overflow-hidden group", children: [
|
|
642
|
+
/* @__PURE__ */ e.jsx("span", { className: "absolute inset-0 bg-white/20 scale-x-0 group-hover:scale-x-100 transition-transform origin-left duration-500" }),
|
|
643
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative", children: "Hot Action" })
|
|
644
|
+
] }), Er = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-gradient-to-r from-cyan-500 to-blue-600 text-white font-semibold rounded-lg hover:shadow-lg hover:shadow-cyan-500/50 active:scale-95 transition-all duration-200", children: "Gradient Wave" });
|
|
645
|
+
t.GRADIENT;
|
|
646
|
+
const kr = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-zinc-900 text-white font-mono rounded overflow-hidden group", children: [
|
|
647
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "GRID_NAV" }),
|
|
648
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 opacity-20 bg-[linear-gradient(90deg,transparent_9px,#fff_10px),linear-gradient(0deg,transparent_9px,#fff_10px)] bg-[size:10px_10px] group-hover:scale-150 transition-transform duration-700" })
|
|
649
|
+
] });
|
|
650
|
+
t.EXPERIMENTAL;
|
|
651
|
+
const Rr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 border-2 border-zinc-900 text-zinc-900 font-bold rounded-[20%_80%_20%_80%/80%_20%_80%_20%] hover:rounded-2xl hover:bg-zinc-900 hover:text-white transition-all duration-300", children: "Sketch Style" });
|
|
652
|
+
t.RETRO;
|
|
653
|
+
const Ar = () => /* @__PURE__ */ e.jsx("button", { className: "relative px-14 py-6 bg-gradient-to-br from-[#f5f5f9] to-[#e8e8f0] dark:from-[#1f1f27] dark:to-[#14141c] text-gray-600 dark:text-gray-400 font-bold rounded-full shadow-[0_40px_80px_-20px_rgba(0,0,0,0.12),0_-16px_32px_-16px_rgba(255,255,255,0.6)] dark:shadow-[0_40px_80px_-20px_rgba(0,0,0,0.75),0_-16px_32px_-16px_rgba(255,255,255,0.08)] hover:scale-105 hover:shadow-[0_50px_100px_-25px_rgba(0,0,0,0.18),0_-20px_40px_-20px_rgba(255,255,255,0.7)] dark:hover:shadow-[0_50px_100px_-25px_rgba(0,0,0,0.85),0_-20px_40px_-20px_rgba(255,255,255,0.1)] active:shadow-[inset_0_12px_24px_-12px_rgba(0,0,0,0.15),inset_0_-12px_24px_-12px_rgba(255,255,255,0.4)] transition-all duration-700 active:scale-95", children: "Soft Cloud" });
|
|
654
|
+
t.NEUMORPHIC;
|
|
655
|
+
const zr = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-10 py-3 bg-white/10 dark:bg-white/5 border border-white/20 text-zinc-900 dark:text-white font-black rounded-xl overflow-hidden group", children: [
|
|
656
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10 uppercase tracking-widest text-[11px]", children: "Pearl Holo" }),
|
|
657
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-gradient-to-tr from-indigo-500/20 via-rose-500/20 to-cyan-500/20 group-hover:scale-150 transition-transform duration-1000" }),
|
|
658
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 -left-[100%] w-full h-full bg-gradient-to-r from-transparent via-white/50 to-transparent skew-x-[-35deg] group-hover:left-[100%] transition-all duration-[1500ms]" }),
|
|
659
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 opacity-0 group-hover:opacity-40 transition-opacity bg-[radial-gradient(circle_at_50%_50%,rgba(255,255,255,0.4),transparent_70%)]" })
|
|
660
|
+
] });
|
|
661
|
+
t.GRADIENT;
|
|
662
|
+
const Ir = () => /* @__PURE__ */ e.jsxs("button", { className: "flex items-center gap-3 px-8 py-3 bg-white border-2 border-zinc-900 text-zinc-900 font-black rounded-2xl group hover:bg-zinc-900 hover:text-white transition-all duration-300", children: [
|
|
663
|
+
/* @__PURE__ */ e.jsx(q, { className: "group-hover:scale-150 group-hover:rotate-12 transition-transform", size: 18 }),
|
|
664
|
+
/* @__PURE__ */ e.jsx("span", { children: "Super Power" })
|
|
665
|
+
] });
|
|
666
|
+
t.ESSENTIAL;
|
|
667
|
+
const Tr = () => /* @__PURE__ */ e.jsxs("div", { className: "relative group", children: [
|
|
668
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-indigo-200 rounded-2xl group-hover:translate-x-4 group-hover:translate-y-4 transition-transform duration-500 blur-sm" }),
|
|
669
|
+
/* @__PURE__ */ e.jsx("button", { className: "relative px-8 py-3 bg-indigo-600 text-white font-bold rounded-2xl group-hover:-translate-x-1 group-hover:-translate-y-1 transition-transform shadow-lg", children: "Decoupled" })
|
|
670
|
+
] });
|
|
671
|
+
t.ANIMATED;
|
|
672
|
+
const Mr = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-white border border-zinc-200 text-zinc-900 font-bold rounded-xl group overflow-hidden", children: [
|
|
673
|
+
/* @__PURE__ */ e.jsx("span", { children: "Indicator" }),
|
|
674
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 right-0 w-2 h-2 bg-zinc-100 group-hover:bg-orange-500 transition-colors" })
|
|
675
|
+
] });
|
|
676
|
+
t.MINIMAL;
|
|
677
|
+
const Sr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-zinc-200 text-zinc-600 font-black border-4 border-zinc-400 shadow-[inset_0_2px_4px_white,4px_4px_0_0_#18181b] active:shadow-none active:translate-x-1 active:translate-y-1 transition-all uppercase tracking-tighter", children: "Lock Plate" });
|
|
678
|
+
t.RETRO;
|
|
679
|
+
const Pr = () => /* @__PURE__ */ e.jsxs("button", { className: "px-10 py-3 bg-zinc-950 text-cyan-200 font-black rounded-2xl border border-white/5 shadow-[inset_0_2px_15px_rgba(34,211,238,0.1)] hover:shadow-[inset_0_2px_25px_rgba(34,211,238,0.3),0_15px_30px_-10px_rgba(0,0,0,0.5)] transition-all duration-300 group", children: [
|
|
680
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10 uppercase tracking-widest text-[10px]", children: "Deep Space" }),
|
|
681
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-[radial-gradient(circle_at_50%_0%,rgba(34,211,238,0.1),transparent_70%)] group-hover:scale-150 transition-transform duration-700" })
|
|
682
|
+
] });
|
|
683
|
+
t.GRADIENT;
|
|
684
|
+
const Or = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-10 py-3 bg-zinc-950 text-white font-black rounded-full overflow-hidden group border border-white/5 shadow-2xl", children: [
|
|
685
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10 uppercase tracking-widest text-[10px]", children: "Star Void" }),
|
|
686
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-gradient-to-b from-indigo-900/40 via-zinc-950 to-zinc-950" }),
|
|
687
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 inset-x-0 h-px bg-gradient-to-r from-transparent via-white/30 to-transparent" }),
|
|
688
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute bottom-[-50%] left-1/2 -translate-x-1/2 w-[120%] h-[120%] bg-gradient-to-t from-fuchsia-600/20 via-transparent to-transparent blur-2xl group-hover:bottom-0 transition-all duration-700" })
|
|
689
|
+
] });
|
|
690
|
+
t.GRADIENT;
|
|
691
|
+
const Lr = () => /* @__PURE__ */ e.jsx("button", { className: "w-36 h-14 bg-[#fdfaf5] dark:bg-[#0a0a0a] text-zinc-500 font-bold rounded-2xl shadow-[inset_8px_8px_16px_#d9d6d1,inset_-8px_-8px_16px_#ffffff] dark:shadow-[inset_8px_8px_16px_#050505,inset_-8px_-8px_16px_#0f0f0f] hover:shadow-[10px_10px_20px_#d9d6d1,-10px_-10px_20px_#ffffff] dark:hover:shadow-[10px_10px_20px_#050505,-10px_-10px_20px_#0f0f0f] hover:-translate-y-1 transition-all duration-500", children: "Deep Crater" });
|
|
692
|
+
t.NEUMORPHIC;
|
|
693
|
+
const Cr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-white border-2 border-zinc-900 text-zinc-900 font-extrabold rounded-none hover:bg-zinc-900 hover:text-white transition-colors duration-200", children: "STARK_CONTRAST" }), Gr = () => /* @__PURE__ */ e.jsx("button", { className: "relative px-10 py-3 bg-zinc-900 text-white font-bold [clip-path:polygon(10%_0,90%_0,100%_10%,100%_90%,90%_100%,10%_100%,0_90%,0_10%)] hover:scale-105 transition-transform", children: "Octagon Cut" });
|
|
694
|
+
t.MINIMAL;
|
|
695
|
+
const Dr = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-10 py-3 bg-orange-700 text-white font-black rounded-xl overflow-hidden group shadow-[0_10px_30px_rgba(194,65,12,0.3)]", children: [
|
|
696
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10 uppercase tracking-widest text-[11px]", children: "Magma Flow" }),
|
|
697
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-gradient-to-br from-red-600 via-orange-500 to-yellow-400 group-hover:scale-125 transition-transform duration-700" }),
|
|
698
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-[radial-gradient(circle_at_50%_50%,rgba(255,255,255,0.1),transparent_80%)]" }),
|
|
699
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute -inset-2 bg-orange-500/30 blur-2xl opacity-0 group-hover:opacity-100 group-hover:animate-pulse-slow" })
|
|
700
|
+
] });
|
|
701
|
+
t.GRADIENT;
|
|
702
|
+
const Fr = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-transparent border-2 border-indigo-600 text-indigo-600 font-bold rounded-lg overflow-hidden group", children: [
|
|
703
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10 group-hover:text-white transition-colors duration-300", children: "Liquid Fill" }),
|
|
704
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute bottom-0 left-0 w-full h-0 bg-indigo-600 group-hover:h-full transition-all duration-500" })
|
|
705
|
+
] });
|
|
706
|
+
t.ANIMATED;
|
|
707
|
+
const Hr = () => /* @__PURE__ */ e.jsx("div", { className: "p-10 flex items-center justify-center", children: /* @__PURE__ */ e.jsxs("button", { className: "relative px-10 py-4 bg-zinc-900/60 backdrop-blur-3xl border border-white/20 text-white font-black rounded-2xl group overflow-hidden shadow-[0_20px_50px_rgba(0,0,0,0.3)] hover:scale-105 active:scale-95 transition-all", children: [
|
|
708
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Refractive Dark" }),
|
|
709
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-[-100%] bg-[conic-gradient(from_0deg,transparent,rgba(255,255,255,0.2),transparent)] animate-[spin_4s_linear_infinite] group-hover:animate-[spin_2s_linear_infinite]" }),
|
|
710
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 bg-gradient-to-br from-white/10 to-transparent" })
|
|
711
|
+
] }) });
|
|
712
|
+
t.GLASSMORPHIC;
|
|
713
|
+
const Ur = () => /* @__PURE__ */ e.jsx("button", { className: "px-10 py-3 bg-indigo-600 text-white font-bold rounded-2xl hover:rounded-[50%_20%_50%_20%/20%_50%_20%_50%] transition-all duration-700 active:scale-95", children: "Liquid Warp" });
|
|
714
|
+
t.ANIMATED;
|
|
715
|
+
const $r = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-white border-2 border-zinc-200 text-zinc-900 font-bold rounded-2xl hover:border-orange-500 hover:scale-105 hover:rotate-1 transition-all shadow-sm", children: "Pull Edge" });
|
|
716
|
+
t.MINIMAL;
|
|
717
|
+
const Yr = () => /* @__PURE__ */ e.jsx("button", { className: "w-14 h-14 bg-zinc-900 text-white rounded-full flex items-center justify-center hover:scale-125 hover:rotate-90 hover:shadow-[0_0_30px_#ff7a00] transition-all duration-500 shadow-xl active:scale-95", children: /* @__PURE__ */ e.jsx(fe, { size: 24 }) });
|
|
718
|
+
t.ANIMATED;
|
|
719
|
+
const Br = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-4 bg-zinc-900 text-white font-bold rounded-2xl hover:translate-x-1 hover:-translate-y-1 hover:shadow-[8px_8px_0_0_#ff7a00] transition-all duration-200 active:translate-x-0 active:translate-y-0 active:shadow-none", children: "Magnetic Move" });
|
|
720
|
+
t.MINIMAL;
|
|
721
|
+
const Xr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-white border border-zinc-200 text-zinc-900 font-bold rounded-xl hover:scale-125 hover:shadow-2xl transition-all duration-300 hover:bg-zinc-50", children: "Magnify" });
|
|
722
|
+
t.ESSENTIAL;
|
|
723
|
+
const qr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-white border-2 border-zinc-900 text-zinc-900 font-bold hover:text-[1.5rem] transition-all duration-300", children: "Text Zoom" });
|
|
724
|
+
t.EXPERIMENTAL;
|
|
725
|
+
const Wr = () => /* @__PURE__ */ e.jsxs("button", { className: "flex items-center gap-2 text-zinc-900 font-bold group", children: [
|
|
726
|
+
/* @__PURE__ */ e.jsx("span", { className: "group-hover:mr-2 transition-all", children: "Explore More" }),
|
|
727
|
+
/* @__PURE__ */ e.jsx(ge, { className: "group-hover:translate-x-1 transition-transform", size: 18 })
|
|
728
|
+
] });
|
|
729
|
+
t.MINIMAL;
|
|
730
|
+
const Vr = () => /* @__PURE__ */ e.jsx("button", { className: "px-4 py-1.5 bg-zinc-100 text-zinc-500 text-[10px] font-black uppercase tracking-[0.2em] rounded hover:bg-zinc-900 hover:text-white transition-all", children: "Badge Mode" });
|
|
731
|
+
t.MINIMAL;
|
|
732
|
+
const Jr = () => /* @__PURE__ */ e.jsxs("button", { className: "flex items-center gap-3 px-6 py-2.5 bg-white border border-zinc-100 rounded-full text-zinc-600 font-semibold hover:border-zinc-300 transition-all shadow-sm", children: [
|
|
733
|
+
/* @__PURE__ */ e.jsxs("span", { className: "relative flex h-2 w-2", children: [
|
|
734
|
+
/* @__PURE__ */ e.jsx("span", { className: "animate-ping absolute inline-flex h-full w-full rounded-full bg-orange-400 opacity-75" }),
|
|
735
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative inline-flex rounded-full h-2 w-2 bg-orange-500" })
|
|
736
|
+
] }),
|
|
737
|
+
"Live Status"
|
|
738
|
+
] }), Zr = () => /* @__PURE__ */ e.jsx("button", { className: "px-6 py-2.5 bg-indigo-600 text-white font-semibold rounded-xl shadow-lg shadow-indigo-200 hover:shadow-indigo-300 hover:-translate-y-0.5 active:translate-y-0 transition-all duration-200", children: "Modern Action" });
|
|
739
|
+
t.ESSENTIAL;
|
|
740
|
+
const Qr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl hover:rounded-full transition-all duration-700 hover:scale-105", children: "Morph Shape" });
|
|
741
|
+
t.ANIMATED;
|
|
742
|
+
const Kr = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 bg-orange-400 text-black font-black border-4 border-black shadow-[8px_8px_0_0_#000] hover:shadow-[4px_4px_0_0_#000] hover:translate-x-1 hover:translate-y-1 active:shadow-none active:translate-x-2 active:translate-y-2 transition-all", children: "STAY LOUD" });
|
|
743
|
+
t.RETRO;
|
|
744
|
+
const et = () => /* @__PURE__ */ e.jsx("button", { className: "px-10 py-3 bg-emerald-400 text-emerald-950 font-black rounded-full shadow-[0_0_20px_rgba(52,211,153,0.5)] hover:shadow-[0_0_40px_rgba(52,211,153,0.8)] transition-all uppercase text-sm", children: "Eco Glow" });
|
|
745
|
+
t.EXPERIMENTAL;
|
|
746
|
+
const rt = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-zinc-950 text-emerald-400 font-bold rounded-full group", children: [
|
|
747
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Pulse Ring" }),
|
|
748
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 rounded-full border border-emerald-500 opacity-20 animate-ping group-hover:opacity-50 group-hover:animate-none" }),
|
|
749
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute inset-0 rounded-full bg-emerald-500/10 blur-md group-hover:bg-emerald-500/30 transition-all" })
|
|
750
|
+
] });
|
|
751
|
+
t.GRADIENT;
|
|
752
|
+
const tt = () => /* @__PURE__ */ e.jsx("button", { className: "relative w-32 h-14 bg-gradient-to-b from-[#f0f0f5] to-[#e0e0e8] dark:from-[#1f1f26] dark:to-[#16161e] text-orange-500 font-bold rounded-3xl shadow-[inset_0_12px_24px_-8px_rgba(0,0,0,0.15),inset_0_-12px_24px_-8px_rgba(255,255,255,0.5)] dark:shadow-[inset_0_12px_24px_-8px_rgba(0,0,0,0.5),inset_0_-12px_24px_-8px_rgba(255,255,255,0.08)] hover:shadow-[inset_0_16px_32px_-10px_rgba(0,0,0,0.2),inset_0_-16px_32px_-10px_rgba(255,255,255,0.6)] dark:hover:shadow-[inset_0_16px_32px_-10px_rgba(0,0,0,0.6),inset_0_-16px_32px_-10px_rgba(255,255,255,0.1)] active:shadow-[inset_0_8px_16px_-6px_rgba(0,0,0,0.2),inset_0_-8px_16px_-6px_rgba(255,255,255,0.4)] transition-all duration-300 active:scale-95", children: "Soft Inset" });
|
|
753
|
+
t.NEUMORPHIC;
|
|
754
|
+
const at = () => /* @__PURE__ */ e.jsx("button", { className: "relative px-12 py-3.5 bg-gradient-to-b from-[#ececf1] to-[#dcdce5] dark:from-[#1a1a22] dark:to-[#12121a] text-gray-600 dark:text-gray-400 font-semibold rounded-full shadow-[inset_0_16px_32px_-12px_rgba(0,0,0,0.18),inset_0_-16px_32px_-12px_rgba(255,255,255,0.55)] dark:shadow-[inset_0_16px_32px_-12px_rgba(0,0,0,0.55),inset_0_-16px_32px_-12px_rgba(255,255,255,0.08)] hover:shadow-[inset_0_20px_40px_-14px_rgba(0,0,0,0.22),inset_0_-20px_40px_-14px_rgba(255,255,255,0.65)] dark:hover:shadow-[inset_0_20px_40px_-14px_rgba(0,0,0,0.65),inset_0_-20px_40px_-14px_rgba(255,255,255,0.1)] active:shadow-[inset_0_10px_20px_-8px_rgba(0,0,0,0.15),inset_0_-10px_20px_-8px_rgba(255,255,255,0.4)] transition-all duration-500 active:scale-95 hover:text-gray-900 dark:hover:text-gray-100", children: "Pill Well" });
|
|
755
|
+
t.NEUMORPHIC;
|
|
756
|
+
const ot = () => /* @__PURE__ */ e.jsx("button", { className: "relative px-8 py-3 bg-gradient-to-br from-[#1a1a1f] to-[#0f0f14] text-gray-500 dark:text-gray-400 font-semibold rounded-2xl shadow-[0_18px_36px_-10px_rgba(0,0,0,0.8),0_-8px_16px_-8px_rgba(255,255,255,0.05)] hover:shadow-[0_24px_48px_-12px_rgba(0,0,0,0.9),0_-10px_20px_-10px_rgba(255,255,255,0.08)] active:shadow-[inset_0_8px_16px_-8px_rgba(0,0,0,0.6),inset_0_-8px_16px_-8px_rgba(255,255,255,0.05)] transition-all duration-300 active:scale-95", children: "Dark Plate" });
|
|
757
|
+
t.NEUMORPHIC;
|
|
758
|
+
const nt = () => /* @__PURE__ */ e.jsx("button", { className: "relative px-8 py-3 bg-gradient-to-b from-[#f0f0f5] to-[#dcdce5] dark:from-[#1f1f26] dark:to-[#16161e] text-gray-800 dark:text-gray-200 font-semibold rounded-2xl shadow-[0_15px_30px_-8px_rgba(0,0,0,0.12),0_-6px_12px_-6px_rgba(255,255,255,0.6)] dark:shadow-[0_15px_30px_-8px_rgba(0,0,0,0.7),0_-6px_12px_-6px_rgba(255,255,255,0.08)] hover:shadow-[0_20px_40px_-10px_rgba(0,0,0,0.16),0_-8px_16px_-8px_rgba(255,255,255,0.7)] dark:hover:shadow-[0_20px_40px_-10px_rgba(0,0,0,0.8),0_-8px_16px_-8px_rgba(255,255,255,0.1)] active:shadow-[inset_0_6px_12px_-6px_rgba(0,0,0,0.15),inset_0_-6px_12px_-6px_rgba(255,255,255,0.4)] dark:active:shadow-[inset_0_6px_12px_-6px_rgba(0,0,0,0.5),inset_0_-6px_12px_-6px_rgba(255,255,255,0.08)] transition-all duration-200 active:scale-95", children: "Hard Stamp" });
|
|
759
|
+
t.NEUMORPHIC;
|
|
760
|
+
const st = () => /* @__PURE__ */ e.jsx("button", { className: "px-6 py-2 bg-[#2a2a2a] text-[#ffd700] font-mono border-t-2 border-l-2 border-[#555] border-b-2 border-r-2 border-black hover:bg-black transition-colors shadow-lg", children: "[ COMMAND_LINK ]" });
|
|
761
|
+
t.RETRO;
|
|
762
|
+
const it = () => /* @__PURE__ */ e.jsxs("button", { className: "relative px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl group overflow-hidden", children: [
|
|
763
|
+
/* @__PURE__ */ e.jsx("span", { className: "relative z-10", children: "Comet Tail" }),
|
|
764
|
+
/* @__PURE__ */ e.jsx("div", { className: "absolute top-0 left-0 w-2 h-2 bg-orange-500 rounded-full blur-sm -translate-x-full group-hover:animate-[comet_1s_linear_infinite]" }),
|
|
765
|
+
/* @__PURE__ */ e.jsx("style", { children: `
|
|
766
|
+
@keyframes comet {
|
|
767
|
+
0% { transform: translate(0, 0); opacity: 1; }
|
|
768
|
+
25% { transform: translate(100%, 0); }
|
|
769
|
+
50% { transform: translate(100%, 100%); }
|
|
770
|
+
75% { transform: translate(0, 100%); }
|
|
771
|
+
100% { transform: translate(0, 0); opacity: 1; }
|
|
772
|
+
}
|
|
773
|
+
` })
|
|
774
|
+
] });
|
|
775
|
+
t.ANIMATED;
|
|
776
|
+
const lt = () => /* @__PURE__ */ e.jsx("button", { className: "px-8 py-3 border-2 border-orange-500 text-orange-500 font-bold rounded-xl hover:bg-orange-500 hover:text-white transition-all duration-300", children: "Fill Rise" });
|
|
777
|
+
t.MINIMAL;
|
|
778
|
+
export {
|
|
779
|
+
Me as ArcadeGreen,
|
|
780
|
+
Se as BentoBox,
|
|
781
|
+
Pe as BorderBeam,
|
|
782
|
+
Oe as BorderTrace,
|
|
783
|
+
Le as BouncyIcon,
|
|
784
|
+
ke as Brutalist,
|
|
785
|
+
t as ButtonCategory,
|
|
786
|
+
Ce as ChevronExpand,
|
|
787
|
+
Ge as Classic90s,
|
|
788
|
+
De as ClaySoftPill,
|
|
789
|
+
Ne as Claymorphic,
|
|
790
|
+
Fe as ContrastFrame,
|
|
791
|
+
He as CyberBevel,
|
|
792
|
+
Ue as CyberGlow,
|
|
793
|
+
$e as CyberGradient,
|
|
794
|
+
Ye as CyberSlice,
|
|
795
|
+
Be as Cyberpunk,
|
|
796
|
+
qe as DashRotate,
|
|
797
|
+
Xe as DashedReveal,
|
|
798
|
+
We as DeepBlurGlass,
|
|
799
|
+
Ve as DepthSlide,
|
|
800
|
+
Je as DiagonalStripes,
|
|
801
|
+
Ze as DiamondCut,
|
|
802
|
+
Qe as DotPattern,
|
|
803
|
+
Ke as DoubleShadow,
|
|
804
|
+
er as DualTone,
|
|
805
|
+
rr as ElevatedFloat,
|
|
806
|
+
tr as EtherealBlur,
|
|
807
|
+
ar as ExpandingAura,
|
|
808
|
+
or as ExpandingPill,
|
|
809
|
+
nr as FloatingLabel,
|
|
810
|
+
sr as FloatingPulse,
|
|
811
|
+
ir as FloatingShadow,
|
|
812
|
+
lr as FragmentButton,
|
|
813
|
+
dr as GhostReveal,
|
|
814
|
+
je as GlassCard,
|
|
815
|
+
cr as GlassDouble,
|
|
816
|
+
pr as GlassFrostedInner,
|
|
817
|
+
xr as GlassFrostyPill,
|
|
818
|
+
ur as GlassFusion,
|
|
819
|
+
br as GlassGlow,
|
|
820
|
+
gr as GlassInset,
|
|
821
|
+
hr as GlassReflective,
|
|
822
|
+
_r as GlassRefraction,
|
|
823
|
+
fr as GlassStroke,
|
|
824
|
+
Ie as GlitchEffect,
|
|
825
|
+
vr as GlowGhost,
|
|
826
|
+
mr as GlowOutline,
|
|
827
|
+
wr as GooeyButton,
|
|
828
|
+
yr as GradientConic,
|
|
829
|
+
Nr as GradientMorph,
|
|
830
|
+
jr as GradientPulse,
|
|
831
|
+
Ae as GradientShadow,
|
|
832
|
+
Er as GradientWave,
|
|
833
|
+
kr as GridOverlay,
|
|
834
|
+
Rr as HandDrawn,
|
|
835
|
+
Ar as HighElevatedNeumorphic,
|
|
836
|
+
zr as Holographic,
|
|
837
|
+
Ir as IconBounce,
|
|
838
|
+
Tr as IndependentShadow,
|
|
839
|
+
Mr as IndicatorButton,
|
|
840
|
+
Sr as IndustrialPlate,
|
|
841
|
+
Pr as InnerGlow,
|
|
842
|
+
Or as InnerGlowPill,
|
|
843
|
+
Lr as InnerShadowDepth,
|
|
844
|
+
Cr as InvertedMinimal,
|
|
845
|
+
Gr as InvertedRound,
|
|
846
|
+
Dr as LavaFlow,
|
|
847
|
+
Fr as LiquidFill,
|
|
848
|
+
Te as LiquidGradient,
|
|
849
|
+
Hr as LiquidPrism,
|
|
850
|
+
Ur as LiquidWarp,
|
|
851
|
+
$r as MagneticBorder,
|
|
852
|
+
Yr as MagneticCircle,
|
|
853
|
+
Br as MagneticSoft,
|
|
854
|
+
Xr as MagnifyHover,
|
|
855
|
+
qr as MagnifyText,
|
|
856
|
+
Wr as MinimalArrow,
|
|
857
|
+
Vr as MinimalBadge,
|
|
858
|
+
Jr as MinimalPulse,
|
|
859
|
+
ze as ModernMinimal,
|
|
860
|
+
Zr as ModernPrimary,
|
|
861
|
+
Qr as MorphingShape,
|
|
862
|
+
Kr as NeoHardShadow,
|
|
863
|
+
Re as NeonBorder,
|
|
864
|
+
et as NeonPill,
|
|
865
|
+
rt as NeonPulseRing,
|
|
866
|
+
tt as NeumorphicConcave,
|
|
867
|
+
at as NeumorphicConcavePill,
|
|
868
|
+
ot as NeumorphicDark,
|
|
869
|
+
nt as NeumorphicEmbossed,
|
|
870
|
+
Ee as NeumorphicSoft,
|
|
871
|
+
st as OldTerminal,
|
|
872
|
+
it as OutlineComet,
|
|
873
|
+
lt as OutlineGrow
|
|
874
|
+
};
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const h=require("react");var N={exports:{}},_={};/**
|
|
2
|
+
* @license React
|
|
3
|
+
* react-jsx-runtime.production.js
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the MIT license found in the
|
|
8
|
+
* LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/var H;function se(){if(H)return _;H=1;var o=Symbol.for("react.transitional.element"),c=Symbol.for("react.fragment");function p(x,d,l){var u=null;if(l!==void 0&&(u=""+l),d.key!==void 0&&(u=""+d.key),"key"in d){l={};for(var b in d)b!=="key"&&(l[b]=d[b])}else l=d;return d=l.ref,{$$typeof:o,type:x,key:u,ref:d!==void 0?d:null,props:l}}return _.Fragment=c,_.jsx=p,_.jsxs=p,_}var f={};/**
|
|
10
|
+
* @license React
|
|
11
|
+
* react-jsx-runtime.development.js
|
|
12
|
+
*
|
|
13
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
14
|
+
*
|
|
15
|
+
* This source code is licensed under the MIT license found in the
|
|
16
|
+
* LICENSE file in the root directory of this source tree.
|
|
17
|
+
*/var B;function ie(){return B||(B=1,process.env.NODE_ENV!=="production"&&(function(){function o(r){if(r==null)return null;if(typeof r=="function")return r.$$typeof===ae?null:r.displayName||r.name||null;if(typeof r=="string")return r;switch(r){case k:return"Fragment";case V:return"Profiler";case X:return"StrictMode";case K:return"Suspense";case ee:return"SuspenseList";case te:return"Activity"}if(typeof r=="object")switch(typeof r.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),r.$$typeof){case W:return"Portal";case Z:return r.displayName||"Context";case J:return(r._context.displayName||"Context")+".Consumer";case Q:var a=r.render;return r=r.displayName,r||(r=a.displayName||a.name||"",r=r!==""?"ForwardRef("+r+")":"ForwardRef"),r;case re:return a=r.displayName||null,a!==null?a:o(r.type)||"Memo";case R:a=r._payload,r=r._init;try{return o(r(a))}catch{}}return null}function c(r){return""+r}function p(r){try{c(r);var a=!1}catch{a=!0}if(a){a=console;var n=a.error,s=typeof Symbol=="function"&&Symbol.toStringTag&&r[Symbol.toStringTag]||r.constructor.name||"Object";return n.call(a,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",s),c(r)}}function x(r){if(r===k)return"<>";if(typeof r=="object"&&r!==null&&r.$$typeof===R)return"<...>";try{var a=o(r);return a?"<"+a+">":"<...>"}catch{return"<...>"}}function d(){var r=A.A;return r===null?null:r.getOwner()}function l(){return Error("react-stack-top-frame")}function u(r){if(G.call(r,"key")){var a=Object.getOwnPropertyDescriptor(r,"key").get;if(a&&a.isReactWarning)return!1}return r.key!==void 0}function b(r,a){function n(){O||(O=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",a))}n.isReactWarning=!0,Object.defineProperty(r,"key",{get:n,configurable:!0})}function j(){var r=o(this.type);return C[r]||(C[r]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),r=this.props.ref,r!==void 0?r:null}function E(r,a,n,s,y,I){var i=n.ref;return r={$$typeof:P,type:r,key:a,props:n,_owner:s},(i!==void 0?i:null)!==null?Object.defineProperty(r,"ref",{enumerable:!1,get:j}):Object.defineProperty(r,"ref",{enumerable:!1,value:null}),r._store={},Object.defineProperty(r._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(r,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(r,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:y}),Object.defineProperty(r,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:I}),Object.freeze&&(Object.freeze(r.props),Object.freeze(r)),r}function m(r,a,n,s,y,I){var i=a.children;if(i!==void 0)if(s)if(oe(i)){for(s=0;s<i.length;s++)S(i[s]);Object.freeze&&Object.freeze(i)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else S(i);if(G.call(a,"key")){i=o(r);var g=Object.keys(a).filter(function(ne){return ne!=="key"});s=0<g.length?"{key: someKey, "+g.join(": ..., ")+": ...}":"{key: someKey}",F[i+s]||(g=0<g.length?"{"+g.join(": ..., ")+": ...}":"{}",console.error(`A props object containing a "key" prop is being spread into JSX:
|
|
18
|
+
let props = %s;
|
|
19
|
+
<%s {...props} />
|
|
20
|
+
React keys must be passed directly to JSX without using spread:
|
|
21
|
+
let props = %s;
|
|
22
|
+
<%s key={someKey} {...props} />`,s,i,g,i),F[i+s]=!0)}if(i=null,n!==void 0&&(p(n),i=""+n),u(a)&&(p(a.key),i=""+a.key),"key"in a){n={};for(var M in a)M!=="key"&&(n[M]=a[M])}else n=a;return i&&b(n,typeof r=="function"?r.displayName||r.name||"Unknown":r),E(r,i,n,d(),y,I)}function S(r){T(r)?r._store&&(r._store.validated=1):typeof r=="object"&&r!==null&&r.$$typeof===R&&(r._payload.status==="fulfilled"?T(r._payload.value)&&r._payload.value._store&&(r._payload.value._store.validated=1):r._store&&(r._store.validated=1))}function T(r){return typeof r=="object"&&r!==null&&r.$$typeof===P}var w=h,P=Symbol.for("react.transitional.element"),W=Symbol.for("react.portal"),k=Symbol.for("react.fragment"),X=Symbol.for("react.strict_mode"),V=Symbol.for("react.profiler"),J=Symbol.for("react.consumer"),Z=Symbol.for("react.context"),Q=Symbol.for("react.forward_ref"),K=Symbol.for("react.suspense"),ee=Symbol.for("react.suspense_list"),re=Symbol.for("react.memo"),R=Symbol.for("react.lazy"),te=Symbol.for("react.activity"),ae=Symbol.for("react.client.reference"),A=w.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,G=Object.prototype.hasOwnProperty,oe=Array.isArray,z=console.createTask?console.createTask:function(){return null};w={react_stack_bottom_frame:function(r){return r()}};var O,C={},L=w.react_stack_bottom_frame.bind(w,l)(),D=z(x(l)),F={};f.Fragment=k,f.jsx=function(r,a,n){var s=1e4>A.recentlyCreatedOwnerStacks++;return m(r,a,n,!1,s?Error("react-stack-top-frame"):L,s?z(x(r)):D)},f.jsxs=function(r,a,n){var s=1e4>A.recentlyCreatedOwnerStacks++;return m(r,a,n,!0,s?Error("react-stack-top-frame"):L,s?z(x(r)):D)}})()),f}var U;function le(){return U||(U=1,process.env.NODE_ENV==="production"?N.exports=se():N.exports=ie()),N.exports}var e=le(),t=(o=>(o.ESSENTIAL="Essential",o.RETRO="Retro",o.MODERN="Modern",o.GLASSMORPHIC="Glassmorphic",o.NEUMORPHIC="Neumorphic",o.NEON="Neon",o.GRADIENT="Gradient",o.MINIMAL="Minimal",o.ANIMATED="Animated",o.EXPERIMENTAL="Experimental",o))(t||{});const de=()=>e.jsx("button",{className:"px-8 py-3 bg-indigo-500 text-white font-black rounded-[2rem] shadow-[inset_-4px_-4px_8px_rgba(0,0,0,0.3),inset_4px_4px_8px_rgba(255,255,255,0.3),8px_8px_16px_rgba(0,0,0,0.15)] hover:scale-110 active:scale-95 transition-all",children:"Plasticine"});t.NEUMORPHIC;const ce=()=>e.jsxs("div",{className:"p-10 relative group",children:[e.jsx("div",{className:"absolute top-0 right-0 w-32 h-32 bg-blue-500/10 blur-[60px] rounded-full group-hover:scale-110 transition-transform duration-700"}),e.jsx("button",{className:"relative px-10 py-5 bg-white/20 dark:bg-white/5 border border-white/60 dark:border-white/10 backdrop-blur-2xl rounded-[2.5rem] shadow-[0_25px_50px_-12px_rgba(0,0,0,0.1),inset_0_1px_0_rgba(255,255,255,0.8)] text-blue-950 dark:text-blue-100 font-black hover:bg-white/30 transition-all active:scale-95",children:"Sapphire Slab"})]});t.GLASSMORPHIC;const pe=()=>e.jsx("button",{className:"relative px-10 py-3.5 bg-gradient-to-br from-[#f5f5f7] to-[#e8e8ed] dark:from-[#1a1a1f] dark:to-[#0f0f14] text-gray-700 dark:text-gray-300 font-semibold rounded-3xl shadow-[0_20px_40px_-10px_rgba(0,0,0,0.1),0_-8px_16px_-8px_rgba(255,255,255,0.5)] dark:shadow-[0_20px_40px_-10px_rgba(0,0,0,0.8),0_-8px_16px_-8px_rgba(255,255,255,0.05)] hover:shadow-[0_25px_50px_-12px_rgba(0,0,0,0.15),0_-10px_20px_-10px_rgba(255,255,255,0.6)] dark:hover:shadow-[0_25px_50px_-12px_rgba(0,0,0,0.9),0_-10px_20px_-10px_rgba(255,255,255,0.08)] active:shadow-[inset_0_8px_16px_-8px_rgba(0,0,0,0.2),inset_0_-8px_16px_-8px_rgba(255,255,255,0.4)] dark:active:shadow-[inset_0_8px_16px_-8px_rgba(0,0,0,0.6),inset_0_-8px_16px_-8px_rgba(255,255,255,0.05)] transition-all duration-300 active:scale-95",children:"Soft Extrude"});t.NEUMORPHIC;const xe=()=>e.jsx("button",{className:"px-6 py-3 bg-white border-4 border-black text-black font-black text-lg shadow-[6px_6px_0_0_#000] active:shadow-none active:translate-x-[4px] active:translate-y-[4px] transition-all",children:"NO RULES"});t.RETRO;const ue=()=>e.jsx("button",{className:"px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl border border-zinc-700 hover:border-orange-500 hover:shadow-[0_0_15px_rgba(255,122,0,0.5)] transition-all duration-300",children:"Neon Border"});t.GRADIENT;const be=()=>e.jsx("button",{className:"px-8 py-3 bg-indigo-600 text-white font-bold rounded-xl shadow-[0_10px_30px_rgba(79,70,229,0.3)] hover:shadow-[0_15px_40px_rgba(79,70,229,0.6)] hover:-translate-y-1 transition-all",children:"Color Shadow"});t.ESSENTIAL;const ge=()=>e.jsx("button",{className:"px-8 py-2 border-b-2 border-zinc-200 text-zinc-400 font-medium hover:text-zinc-900 hover:border-zinc-900 transition-all text-sm tracking-tight",children:"Slight Underline"});t.MINIMAL;const he=()=>e.jsx("button",{className:"px-8 py-3 bg-zinc-900 text-white font-black italic rounded-none border-r-4 border-orange-500 hover:animate-pulse hover:shadow-[4px_0_0_#0ea5e9,-4px_0_0_#f43f5e] transition-shadow",children:"GLITCH_ME"});t.EXPERIMENTAL;const _e=()=>e.jsx("button",{className:"px-8 py-3 bg-gradient-to-r from-orange-400 via-rose-400 to-indigo-500 bg-[length:200%_auto] text-white font-bold rounded-2xl hover:bg-[position:right_center] transition-all duration-500 shadow-xl shadow-orange-200",children:"Liquid Flow"});t.ANIMATED;const fe=()=>e.jsx("button",{className:"px-8 py-3 bg-[#003300] text-[#00ff00] font-mono font-bold border-2 border-[#00ff00] shadow-[0_0_15px_#00ff00] hover:bg-[#00ff00] hover:text-black transition-all",children:"INSERT COIN"});t.RETRO;/**
|
|
23
|
+
* @license lucide-react v0.475.0 - ISC
|
|
24
|
+
*
|
|
25
|
+
* This source code is licensed under the ISC license.
|
|
26
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
27
|
+
*/const ve=o=>o.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),$=(...o)=>o.filter((c,p,x)=>!!c&&c.trim()!==""&&x.indexOf(c)===p).join(" ").trim();/**
|
|
28
|
+
* @license lucide-react v0.475.0 - ISC
|
|
29
|
+
*
|
|
30
|
+
* This source code is licensed under the ISC license.
|
|
31
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
32
|
+
*/var me={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/**
|
|
33
|
+
* @license lucide-react v0.475.0 - ISC
|
|
34
|
+
*
|
|
35
|
+
* This source code is licensed under the ISC license.
|
|
36
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
37
|
+
*/const we=h.forwardRef(({color:o="currentColor",size:c=24,strokeWidth:p=2,absoluteStrokeWidth:x,className:d="",children:l,iconNode:u,...b},j)=>h.createElement("svg",{ref:j,...me,width:c,height:c,stroke:o,strokeWidth:x?Number(p)*24/Number(c):p,className:$("lucide",d),...b},[...u.map(([E,m])=>h.createElement(E,m)),...Array.isArray(l)?l:[l]]));/**
|
|
38
|
+
* @license lucide-react v0.475.0 - ISC
|
|
39
|
+
*
|
|
40
|
+
* This source code is licensed under the ISC license.
|
|
41
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
42
|
+
*/const v=(o,c)=>{const p=h.forwardRef(({className:x,...d},l)=>h.createElement(we,{ref:l,iconNode:c,className:$(`lucide-${ve(o)}`,x),...d}));return p.displayName=`${o}`,p};/**
|
|
43
|
+
* @license lucide-react v0.475.0 - ISC
|
|
44
|
+
*
|
|
45
|
+
* This source code is licensed under the ISC license.
|
|
46
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
47
|
+
*/const ye=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]],Ne=v("ArrowRight",ye);/**
|
|
48
|
+
* @license lucide-react v0.475.0 - ISC
|
|
49
|
+
*
|
|
50
|
+
* This source code is licensed under the ISC license.
|
|
51
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
52
|
+
*/const je=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],q=v("ChevronRight",je);/**
|
|
53
|
+
* @license lucide-react v0.475.0 - ISC
|
|
54
|
+
*
|
|
55
|
+
* This source code is licensed under the ISC license.
|
|
56
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
57
|
+
*/const Ee=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],ke=v("Plus",Ee);/**
|
|
58
|
+
* @license lucide-react v0.475.0 - ISC
|
|
59
|
+
*
|
|
60
|
+
* This source code is licensed under the ISC license.
|
|
61
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
62
|
+
*/const Re=[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]],Ae=v("Star",Re);/**
|
|
63
|
+
* @license lucide-react v0.475.0 - ISC
|
|
64
|
+
*
|
|
65
|
+
* This source code is licensed under the ISC license.
|
|
66
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
67
|
+
*/const ze=[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]],Y=v("Zap",ze),Ie=()=>e.jsxs("button",{className:"flex items-center gap-1 p-1 bg-zinc-100 rounded-2xl group hover:bg-zinc-200 transition-colors",children:[e.jsx("div",{className:"bg-white p-2 rounded-xl shadow-sm group-hover:scale-95 transition-transform",children:e.jsx(Y,{size:18,className:"text-orange-500"})}),e.jsx("span",{className:"px-3 text-sm font-bold text-zinc-700",children:"Quick Start"}),e.jsx("div",{className:"pr-2",children:e.jsx(q,{size:16,className:"text-zinc-400 group-hover:translate-x-1 transition-transform"})})]});t.MINIMAL;const Me=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-zinc-950 text-white font-bold rounded-xl overflow-hidden group",children:[e.jsx("span",{className:"relative z-10",children:"Neon Beam"}),e.jsx("div",{className:"absolute inset-[-100%] bg-[conic-gradient(from_0deg,transparent,transparent,#ff7a00,transparent)] animate-[spin_4s_linear_infinite] group-hover:animate-[spin_1s_linear_infinite]"}),e.jsx("div",{className:"absolute inset-[2px] bg-zinc-950 rounded-xl"}),e.jsx("style",{children:"@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }"})]});t.GRADIENT;const Se=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-white text-zinc-900 font-bold group",children:[e.jsx("span",{className:"relative z-10",children:"Border Trace"}),e.jsx("span",{className:"absolute inset-0 border-2 border-zinc-100 group-hover:border-orange-500 transition-colors duration-300"}),e.jsx("span",{className:"absolute top-0 left-0 h-0.5 w-0 bg-orange-500 group-hover:w-full transition-all duration-300"}),e.jsx("span",{className:"absolute bottom-0 right-0 h-0.5 w-0 bg-orange-500 group-hover:w-full transition-all duration-300"}),e.jsx("span",{className:"absolute top-0 right-0 w-0.5 h-0 bg-orange-500 group-hover:h-full transition-all duration-300"}),e.jsx("span",{className:"absolute bottom-0 left-0 w-0.5 h-0 bg-orange-500 group-hover:h-full transition-all duration-300"})]});t.ANIMATED;const Te=()=>e.jsxs("button",{className:"flex items-center gap-3 px-8 py-3 bg-zinc-900 text-white font-bold rounded-full group",children:[e.jsx(Ae,{className:"group-hover:animate-bounce text-orange-400",size:18}),e.jsx("span",{children:"Bouncy Star"})]});t.ANIMATED;const Pe=()=>e.jsxs("button",{className:"flex items-center gap-2 px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl group",children:[e.jsx("span",{children:"Continue"}),e.jsx("div",{className:"w-0 overflow-hidden group-hover:w-4 transition-all duration-300",children:e.jsx(q,{size:18,className:"translate-x-[-10px] group-hover:translate-x-0 transition-transform duration-300"})})]});t.ANIMATED;const Ge=()=>e.jsx("button",{className:"px-6 py-2 bg-[#dfdfdf] text-black font-medium border-t-2 border-l-2 border-[#ffffff] border-b-2 border-r-2 border-[#808080] active:border-t-2 active:border-l-2 active:border-[#808080] active:border-b-2 active:border-r-2 active:border-[#ffffff] shadow-sm",children:"Submit Form"});t.RETRO;const Oe=()=>e.jsx("button",{className:"px-12 py-4 bg-indigo-500 text-white font-black rounded-full shadow-[inset_-8px_-8px_16px_rgba(0,0,0,0.15),inset_8px_8px_16px_rgba(255,255,255,0.2),12px_12px_24px_rgba(79,70,229,0.2)] hover:scale-110 active:scale-90 transition-all duration-300",children:"Soft Clay"});t.NEUMORPHIC;const Ce=()=>e.jsx("button",{className:"px-8 py-3 bg-white text-zinc-900 font-bold rounded-xl border-2 border-zinc-900 shadow-[inset_0_0_0_2px_white] hover:bg-zinc-900 hover:text-white transition-all active:scale-95",children:"Double Frame"});t.ESSENTIAL;const Le=()=>e.jsx("button",{className:"px-10 py-3 bg-blue-600 text-white font-black skew-x-[-12deg] shadow-[4px_4px_0_#1e3a8a] active:shadow-none active:translate-x-1 active:translate-y-1 transition-all uppercase italic",children:"Bevel Drive"});t.RETRO;const De=()=>e.jsx("button",{className:"px-8 py-3 bg-zinc-950 text-cyan-400 font-bold border-2 border-cyan-400/50 rounded-lg hover:shadow-[0_0_20px_#22d3ee,inset_0_0_10px_#22d3ee] hover:border-cyan-400 transition-all duration-300 tracking-tighter active:scale-95",children:"CORE_ACCESS"});t.EXPERIMENTAL;const Fe=()=>e.jsxs("button",{className:"relative p-[1.5px] rounded-2xl bg-gradient-to-tr from-cyan-400 via-fuchsia-500 to-yellow-400 hover:scale-105 active:scale-95 transition-all duration-300 group",children:[e.jsx("div",{className:"px-8 py-3 bg-zinc-950 rounded-2xl flex items-center justify-center",children:e.jsx("span",{className:"bg-gradient-to-r from-cyan-400 via-fuchsia-500 to-yellow-400 bg-clip-text text-transparent font-black uppercase tracking-[0.2em] text-[11px] group-hover:drop-shadow-[0_0_8px_rgba(34,211,238,0.5)] transition-all",children:"Mesh Flow"})}),e.jsx("div",{className:"absolute inset-0 bg-gradient-to-tr from-cyan-400 via-fuchsia-500 to-yellow-400 blur-xl opacity-0 group-hover:opacity-20 transition-opacity"})]});t.GRADIENT;const He=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-zinc-900 text-cyan-400 font-bold uppercase tracking-widest [clip-path:polygon(0%_15%,15%_0%,100%_0%,100%_85%,85%_100%,0%_100%)] hover:bg-cyan-400 hover:text-black transition-all group overflow-hidden",children:[e.jsx("div",{className:"absolute top-0 left-0 w-full h-full bg-gradient-to-r from-transparent via-cyan-400/20 to-transparent -translate-x-full group-hover:translate-x-full transition-transform duration-1000"}),e.jsx("span",{className:"relative z-10",children:"Cyber_Slice"})]});t.EXPERIMENTAL;const Be=()=>e.jsx("button",{className:"relative px-8 py-3 bg-transparent border-2 border-cyan-400 text-cyan-400 font-black italic rounded-none [clip-path:polygon(0_0,100%_0,100%_70%,85%_100%,0_100%)] hover:bg-cyan-400 hover:text-black hover:shadow-[0_0_20px_rgba(34,211,238,0.5)] transition-all",children:"CYBER_UP"});t.EXPERIMENTAL;const Ue=()=>e.jsx("button",{className:"px-8 py-3 border-4 border-dashed border-zinc-200 text-zinc-300 font-black rounded-full hover:border-solid hover:border-orange-500 hover:text-orange-500 hover:bg-orange-50 transition-all duration-300",children:"REVEAL_SOLID"});t.EXPERIMENTAL;const $e=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-white text-zinc-900 font-bold rounded-lg group",children:[e.jsx("span",{className:"relative z-10",children:"Dash Spin"}),e.jsx("div",{className:"absolute inset-0 border-2 border-dashed border-zinc-200 rounded-lg group-hover:animate-[spin_4s_linear_infinite] group-hover:border-orange-500 transition-colors"})]});t.ANIMATED;const qe=()=>e.jsxs("div",{className:"p-16 relative group",children:[e.jsx("div",{className:"absolute inset-0 bg-indigo-500/5 blur-[100px] group-hover:bg-indigo-500/10 transition-colors"}),e.jsx("button",{className:"relative px-12 py-5 bg-indigo-500/10 backdrop-blur-[32px] border border-indigo-500/20 text-indigo-600 dark:text-indigo-400 font-bold rounded-3xl shadow-2xl hover:bg-indigo-500/15 transition-all",children:"Cloud Blur"})]});t.GLASSMORPHIC;const Ye=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-zinc-100 text-zinc-900 font-bold border-b-4 border-zinc-300 rounded-lg group active:border-b-0 active:translate-y-1 transition-all",children:[e.jsx("span",{className:"relative z-10 group-hover:text-white transition-colors duration-200",children:"Depth Slide"}),e.jsx("div",{className:"absolute inset-0 bg-zinc-900 scale-x-0 group-hover:scale-x-100 transition-transform origin-left duration-300 -z-0"})]});t.RETRO;const We=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-orange-500 text-white font-black rounded-lg overflow-hidden group",children:[e.jsx("span",{className:"relative z-10",children:"Danger Zone"}),e.jsx("div",{className:"absolute inset-0 opacity-20 bg-[repeating-linear-gradient(45deg,transparent,transparent_10px,#000_10px,#000_20px)] animate-[move-bg_2s_linear_infinite]"}),e.jsx("style",{children:`
|
|
68
|
+
@keyframes move-bg {
|
|
69
|
+
0% { background-position: 0 0; }
|
|
70
|
+
100% { background-position: 40px 0; }
|
|
71
|
+
}
|
|
72
|
+
`})]});t.RETRO;const Xe=()=>e.jsx("button",{className:"relative px-12 py-3 bg-zinc-900 text-white font-black [clip-path:polygon(15%_0%,85%_0%,100%_50%,85%_100%,15%_100%,0%_50%)] hover:bg-zinc-700 transition-colors active:scale-90",children:"Diamond"});t.EXPERIMENTAL;const Ve=()=>e.jsx("button",{className:"px-8 py-3 bg-white border-2 border-zinc-900 text-zinc-900 font-bold rounded-xl bg-[radial-gradient(#e5e7eb_1px,transparent_1px)] bg-[size:10px_10px] hover:bg-zinc-50 transition-colors",children:"Dot Matrix"});t.RETRO;const Je=()=>e.jsx("button",{className:"px-8 py-3 bg-white text-zinc-900 font-bold rounded-xl border border-zinc-100 shadow-[5px_5px_0_0_#ff7a00,10px_10px_0_0_#fef3c7] hover:translate-x-1 hover:translate-y-1 hover:shadow-none transition-all duration-300",children:"Multi Layer"});t.RETRO;const Ze=()=>e.jsxs("button",{className:"flex px-1 items-center bg-zinc-100 rounded-full group hover:bg-zinc-900 transition-colors duration-300",children:[e.jsx("div",{className:"bg-white px-6 py-2 rounded-full text-zinc-900 font-bold group-hover:bg-zinc-800 group-hover:text-white transition-all",children:"Dual"}),e.jsx("div",{className:"px-6 py-2 text-zinc-400 font-bold group-hover:text-zinc-500 transition-all",children:"Tone"})]});t.MINIMAL;const Qe=()=>e.jsx("button",{className:"px-10 py-4 bg-white text-zinc-800 font-bold rounded-3xl shadow-[0_20px_50px_rgba(0,0,0,0.1)] hover:shadow-[0_10px_20px_rgba(0,0,0,0.05)] hover:translate-y-1 active:scale-95 transition-all",children:"Deep Float"}),Ke=()=>e.jsx("button",{className:"px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl blur-[2px] hover:blur-0 transition-all duration-500 scale-95 hover:scale-100",children:"Ghost Reveal"});t.EXPERIMENTAL;const er=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl group",children:[e.jsx("span",{className:"relative z-10",children:"Aura Expand"}),e.jsx("div",{className:"absolute inset-0 bg-orange-500 rounded-xl blur-0 group-hover:blur-xl group-hover:scale-125 opacity-0 group-hover:opacity-40 transition-all duration-500"})]});t.ANIMATED;const rr=()=>e.jsx("button",{className:"px-6 py-2 bg-white border-2 border-zinc-900 text-zinc-900 font-bold rounded-full hover:px-10 hover:ring-4 hover:ring-zinc-100 transition-all duration-300 active:scale-95",children:"Expand Me"});t.ANIMATED;const tr=()=>e.jsxs("div",{className:"relative group",children:[e.jsx("span",{className:"absolute -top-6 left-1/2 -translate-x-1/2 text-[10px] font-black text-orange-500 opacity-0 group-hover:opacity-100 group-hover:-top-8 transition-all duration-300",children:"CONFIRM?"}),e.jsx("button",{className:"px-8 py-3 bg-white border border-zinc-200 text-zinc-900 font-bold rounded-xl hover:border-orange-500 hover:text-orange-500 transition-all",children:"Action Ready"})]});t.MINIMAL;const ar=()=>e.jsxs("button",{className:"relative px-10 py-3 bg-indigo-500 text-white font-black rounded-full hover:scale-105 transition-all",children:[e.jsx("span",{className:"absolute inset-0 rounded-full bg-indigo-400 animate-ping opacity-20"}),e.jsx("span",{className:"relative",children:"Pulse Up"})]});t.ANIMATED;const or=()=>e.jsx("button",{className:"px-8 py-3 bg-[#ff7a00] text-white font-bold rounded-xl shadow-[0_5px_0_0_#b45309] hover:shadow-[0_15px_30px_rgba(251,146,60,0.4)] hover:-translate-y-2 transition-all duration-300",children:"Shadow Flight"});t.ESSENTIAL;const nr=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-zinc-900 text-white font-black group overflow-hidden",children:[e.jsx("span",{className:"relative z-10",children:"Fragment_Nav"}),e.jsx("div",{className:"absolute top-0 left-0 w-1/2 h-full bg-white/10 -skew-x-12 translate-x-[-150%] group-hover:translate-x-[250%] transition-transform duration-700"})]});t.EXPERIMENTAL;const sr=()=>e.jsx("button",{className:"px-8 py-3 bg-white text-zinc-300 border border-zinc-100 font-bold rounded-xl hover:text-zinc-900 hover:border-zinc-900 transition-all duration-300",children:"Ghost Reveal"});t.MINIMAL;const ir=()=>e.jsxs("div",{className:"relative p-1",children:[e.jsx("div",{className:"absolute inset-0 bg-white/10 blur-md rounded-2xl"}),e.jsx("button",{className:"relative px-8 py-3 bg-white/20 border border-white/40 text-zinc-800 font-black rounded-2xl shadow-xl hover:bg-white/40 transition-all active:scale-95",children:"Dual Glass"})]});t.GLASSMORPHIC;const lr=()=>e.jsxs("button",{className:"px-8 py-3 bg-zinc-900 text-white font-bold rounded-2xl relative overflow-hidden group",children:[e.jsx("span",{className:"relative z-10",children:"Glass Core"}),e.jsx("div",{className:"absolute inset-2 bg-white/10 backdrop-blur-md rounded-xl opacity-0 group-hover:opacity-100 transition-opacity duration-300 border border-white/20 shadow-inner"})]});t.GLASSMORPHIC;const dr=()=>e.jsxs("div",{className:"p-10 relative",children:[e.jsx("div",{className:"absolute inset-0 bg-rose-500/5 blur-3xl rounded-full"}),e.jsx("button",{className:"relative px-10 py-3 bg-rose-500/10 backdrop-blur-xl border border-rose-500/20 text-rose-500 dark:text-rose-400 font-bold rounded-full shadow-lg hover:bg-rose-500/20 transition-all",children:"Frosty Pill"})]});t.GLASSMORPHIC;const cr=()=>e.jsxs("div",{className:"relative p-10 group",children:[e.jsx("div",{className:"absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-32 h-32 bg-emerald-400/20 blur-[60px] rounded-full group-hover:bg-emerald-400/40 transition-colors duration-500"}),e.jsxs("button",{className:"relative px-10 py-4 bg-white/40 dark:bg-zinc-900/40 backdrop-blur-xl border border-white/60 dark:border-white/10 text-emerald-900 dark:text-emerald-100 font-black rounded-2xl shadow-[0_10px_30px_-10px_rgba(0,0,0,0.1),inset_0_1px_1px_rgba(255,255,255,0.8)] hover:scale-105 active:scale-95 transition-all overflow-hidden group/btn",children:[e.jsx("div",{className:"absolute top-0 left-0 w-full h-full bg-gradient-to-br from-white/40 to-transparent pointer-events-none"}),e.jsx("span",{className:"relative",children:"Aurora Glass"})]})]});t.GLASSMORPHIC;const pr=()=>e.jsxs("div",{className:"relative p-10 group",children:[e.jsx("div",{className:"absolute inset-0 bg-purple-500/10 blur-[80px] group-hover:bg-purple-500/20 transition-all duration-700"}),e.jsxs("button",{className:"relative px-8 py-3 bg-white/20 dark:bg-white/5 backdrop-blur-2xl border border-white/40 dark:border-white/10 text-purple-900 dark:text-purple-100 font-black rounded-xl hover:shadow-[0_20px_40px_rgba(168,85,247,0.15)] transition-all active:scale-95",children:[e.jsx("div",{className:"absolute inset-0 bg-gradient-to-tr from-white/10 via-transparent to-white/20"}),"Nebula Glass"]})]});t.GLASSMORPHIC;const xr=()=>e.jsxs("div",{className:"p-10 relative",children:[e.jsx("div",{className:"absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-40 h-40 bg-orange-400/10 blur-[50px]"}),e.jsxs("button",{className:"relative px-8 py-3 bg-white/10 dark:bg-white/5 backdrop-blur-md border-2 border-white/50 dark:border-white/10 text-orange-950 dark:text-orange-100 font-black rounded-xl shadow-[inset_0_2px_15px_rgba(255,255,255,0.5),0_10px_20px_rgba(0,0,0,0.05)] hover:bg-white/20 transition-all group overflow-hidden",children:[e.jsx("div",{className:"absolute -inset-full bg-gradient-to-r from-transparent via-white/20 to-transparent -skew-x-45 group-hover:translate-x-full transition-transform duration-1000"}),"Amber Vitrum"]})]});t.GLASSMORPHIC;const ur=()=>e.jsx("div",{className:"p-12 flex items-center justify-center",children:e.jsxs("button",{className:"relative px-10 py-4 bg-white/40 dark:bg-white/10 border border-white/60 dark:border-white/20 text-zinc-900 dark:text-zinc-100 font-black rounded-2xl overflow-hidden group shadow-[0_10px_30px_rgba(0,0,0,0.05)] backdrop-blur-md",children:[e.jsx("span",{className:"relative z-10",children:"Mirror Glass"}),e.jsx("div",{className:"absolute top-0 left-0 w-full h-[1px] bg-gradient-to-r from-transparent via-white/80 to-transparent"}),e.jsx("div",{className:"absolute top-0 left-0 w-full h-full bg-gradient-to-br from-white/30 to-transparent"}),e.jsx("div",{className:"absolute top-0 -left-[100%] w-full h-full bg-gradient-to-r from-transparent via-white/40 to-transparent skew-x-[-25deg] group-hover:left-[150%] transition-all duration-1000"})]})});t.GLASSMORPHIC;const br=()=>e.jsxs("div",{className:"p-12 relative group",children:[e.jsx("div",{className:"absolute inset-4 bg-cyan-400/10 blur-[40px] rounded-3xl group-hover:scale-125 transition-transform duration-700"}),e.jsx("button",{className:"relative px-10 py-4 bg-white/30 dark:bg-white/5 backdrop-blur-3xl border border-white/80 dark:border-white/20 text-cyan-950 dark:text-cyan-100 font-black rounded-[2rem] shadow-[0_15px_35px_-5px_rgba(0,0,0,0.1),inset_0_4px_8px_rgba(255,255,255,0.6)] hover:bg-white/40 hover:translate-y-[-2px] transition-all",children:"Crystal Prism"})]});t.GLASSMORPHIC;const gr=()=>e.jsx("button",{className:"px-8 py-3 bg-white/5 border-2 border-white/20 text-white font-bold rounded-xl backdrop-blur-sm hover:bg-white/10 hover:border-white/40 transition-all",children:"Glass Stroke"});t.GLASSMORPHIC;const hr=()=>e.jsx("button",{className:"px-6 py-2 text-zinc-400 font-bold hover:text-orange-500 hover:drop-shadow-[0_0_10px_rgba(255,122,0,0.5)] transition-all duration-300 uppercase tracking-widest text-xs",children:"Hidden Glow"});t.EXPERIMENTAL;const _r=()=>e.jsx("button",{className:"px-8 py-3 bg-transparent border-2 border-indigo-500 text-indigo-500 font-bold rounded-xl hover:shadow-[0_0_20px_rgba(99,102,241,0.6)] hover:bg-indigo-500 hover:text-white transition-all animate-pulse hover:animate-none",children:"Glow Aura"});t.EXPERIMENTAL;const fr=()=>e.jsxs("button",{className:"px-8 py-3 bg-orange-500 text-white font-bold rounded-full relative group hover:scale-105 active:scale-95 transition-all",children:["Gooey Pop",e.jsx("span",{className:"absolute -top-1 -right-1 w-4 h-4 bg-orange-400 rounded-full group-hover:translate-x-4 group-hover:-translate-y-4 transition-transform duration-500"}),e.jsx("span",{className:"absolute -bottom-1 -left-1 w-3 h-3 bg-orange-600 rounded-full group-hover:-translate-x-3 group-hover:translate-y-3 transition-transform duration-500"})]});t.EXPERIMENTAL;const vr=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-zinc-950 text-white font-black rounded-xl overflow-hidden group border border-white/10",children:[e.jsx("span",{className:"relative z-10 uppercase tracking-[0.2em] text-[10px]",children:"Whirlpool"}),e.jsx("div",{className:"absolute inset-[-100%] bg-[conic-gradient(from_0deg,#ff7a00,#f43f5e,#8b5cf6,#06b6d4,#ff7a00)] opacity-0 group-hover:opacity-60 group-hover:animate-[spin_2s_linear_infinite] transition-opacity duration-500"}),e.jsx("div",{className:"absolute inset-[2px] bg-zinc-950 rounded-lg group-hover:opacity-90 transition-opacity"}),e.jsx("style",{children:`
|
|
73
|
+
@keyframes spin {
|
|
74
|
+
from { transform: rotate(0deg); }
|
|
75
|
+
to { transform: rotate(360deg); }
|
|
76
|
+
}
|
|
77
|
+
`})]});t.GRADIENT;const mr=()=>e.jsxs("button",{className:"relative px-12 py-3.5 bg-gradient-to-br from-violet-600 via-indigo-500 to-cyan-400 bg-[length:300%_300%] animate-[gradient_8s_ease_infinite] text-white font-black rounded-full shadow-[0_15px_35px_-10px_rgba(79,70,229,0.4)] hover:shadow-[0_25px_50px_-12px_rgba(79,70,229,0.5)] hover:-translate-y-1 active:scale-95 transition-all",children:[e.jsx("span",{className:"relative z-10 uppercase tracking-[0.2em] text-[10px]",children:"Aurorean"}),e.jsx("style",{children:`
|
|
78
|
+
@keyframes gradient {
|
|
79
|
+
0% { background-position: 0% 50%; }
|
|
80
|
+
50% { background-position: 100% 50%; }
|
|
81
|
+
100% { background-position: 0% 50%; }
|
|
82
|
+
}
|
|
83
|
+
`})]});t.GRADIENT;const wr=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-gradient-to-r from-rose-500 to-orange-500 text-white font-bold rounded-full overflow-hidden group",children:[e.jsx("span",{className:"absolute inset-0 bg-white/20 scale-x-0 group-hover:scale-x-100 transition-transform origin-left duration-500"}),e.jsx("span",{className:"relative",children:"Hot Action"})]}),yr=()=>e.jsx("button",{className:"px-8 py-3 bg-gradient-to-r from-cyan-500 to-blue-600 text-white font-semibold rounded-lg hover:shadow-lg hover:shadow-cyan-500/50 active:scale-95 transition-all duration-200",children:"Gradient Wave"});t.GRADIENT;const Nr=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-zinc-900 text-white font-mono rounded overflow-hidden group",children:[e.jsx("span",{className:"relative z-10",children:"GRID_NAV"}),e.jsx("div",{className:"absolute inset-0 opacity-20 bg-[linear-gradient(90deg,transparent_9px,#fff_10px),linear-gradient(0deg,transparent_9px,#fff_10px)] bg-[size:10px_10px] group-hover:scale-150 transition-transform duration-700"})]});t.EXPERIMENTAL;const jr=()=>e.jsx("button",{className:"px-8 py-3 border-2 border-zinc-900 text-zinc-900 font-bold rounded-[20%_80%_20%_80%/80%_20%_80%_20%] hover:rounded-2xl hover:bg-zinc-900 hover:text-white transition-all duration-300",children:"Sketch Style"});t.RETRO;const Er=()=>e.jsx("button",{className:"relative px-14 py-6 bg-gradient-to-br from-[#f5f5f9] to-[#e8e8f0] dark:from-[#1f1f27] dark:to-[#14141c] text-gray-600 dark:text-gray-400 font-bold rounded-full shadow-[0_40px_80px_-20px_rgba(0,0,0,0.12),0_-16px_32px_-16px_rgba(255,255,255,0.6)] dark:shadow-[0_40px_80px_-20px_rgba(0,0,0,0.75),0_-16px_32px_-16px_rgba(255,255,255,0.08)] hover:scale-105 hover:shadow-[0_50px_100px_-25px_rgba(0,0,0,0.18),0_-20px_40px_-20px_rgba(255,255,255,0.7)] dark:hover:shadow-[0_50px_100px_-25px_rgba(0,0,0,0.85),0_-20px_40px_-20px_rgba(255,255,255,0.1)] active:shadow-[inset_0_12px_24px_-12px_rgba(0,0,0,0.15),inset_0_-12px_24px_-12px_rgba(255,255,255,0.4)] transition-all duration-700 active:scale-95",children:"Soft Cloud"});t.NEUMORPHIC;const kr=()=>e.jsxs("button",{className:"relative px-10 py-3 bg-white/10 dark:bg-white/5 border border-white/20 text-zinc-900 dark:text-white font-black rounded-xl overflow-hidden group",children:[e.jsx("span",{className:"relative z-10 uppercase tracking-widest text-[11px]",children:"Pearl Holo"}),e.jsx("div",{className:"absolute inset-0 bg-gradient-to-tr from-indigo-500/20 via-rose-500/20 to-cyan-500/20 group-hover:scale-150 transition-transform duration-1000"}),e.jsx("div",{className:"absolute top-0 -left-[100%] w-full h-full bg-gradient-to-r from-transparent via-white/50 to-transparent skew-x-[-35deg] group-hover:left-[100%] transition-all duration-[1500ms]"}),e.jsx("div",{className:"absolute inset-0 opacity-0 group-hover:opacity-40 transition-opacity bg-[radial-gradient(circle_at_50%_50%,rgba(255,255,255,0.4),transparent_70%)]"})]});t.GRADIENT;const Rr=()=>e.jsxs("button",{className:"flex items-center gap-3 px-8 py-3 bg-white border-2 border-zinc-900 text-zinc-900 font-black rounded-2xl group hover:bg-zinc-900 hover:text-white transition-all duration-300",children:[e.jsx(Y,{className:"group-hover:scale-150 group-hover:rotate-12 transition-transform",size:18}),e.jsx("span",{children:"Super Power"})]});t.ESSENTIAL;const Ar=()=>e.jsxs("div",{className:"relative group",children:[e.jsx("div",{className:"absolute inset-0 bg-indigo-200 rounded-2xl group-hover:translate-x-4 group-hover:translate-y-4 transition-transform duration-500 blur-sm"}),e.jsx("button",{className:"relative px-8 py-3 bg-indigo-600 text-white font-bold rounded-2xl group-hover:-translate-x-1 group-hover:-translate-y-1 transition-transform shadow-lg",children:"Decoupled"})]});t.ANIMATED;const zr=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-white border border-zinc-200 text-zinc-900 font-bold rounded-xl group overflow-hidden",children:[e.jsx("span",{children:"Indicator"}),e.jsx("div",{className:"absolute top-0 right-0 w-2 h-2 bg-zinc-100 group-hover:bg-orange-500 transition-colors"})]});t.MINIMAL;const Ir=()=>e.jsx("button",{className:"px-8 py-3 bg-zinc-200 text-zinc-600 font-black border-4 border-zinc-400 shadow-[inset_0_2px_4px_white,4px_4px_0_0_#18181b] active:shadow-none active:translate-x-1 active:translate-y-1 transition-all uppercase tracking-tighter",children:"Lock Plate"});t.RETRO;const Mr=()=>e.jsxs("button",{className:"px-10 py-3 bg-zinc-950 text-cyan-200 font-black rounded-2xl border border-white/5 shadow-[inset_0_2px_15px_rgba(34,211,238,0.1)] hover:shadow-[inset_0_2px_25px_rgba(34,211,238,0.3),0_15px_30px_-10px_rgba(0,0,0,0.5)] transition-all duration-300 group",children:[e.jsx("span",{className:"relative z-10 uppercase tracking-widest text-[10px]",children:"Deep Space"}),e.jsx("div",{className:"absolute inset-0 bg-[radial-gradient(circle_at_50%_0%,rgba(34,211,238,0.1),transparent_70%)] group-hover:scale-150 transition-transform duration-700"})]});t.GRADIENT;const Sr=()=>e.jsxs("button",{className:"relative px-10 py-3 bg-zinc-950 text-white font-black rounded-full overflow-hidden group border border-white/5 shadow-2xl",children:[e.jsx("span",{className:"relative z-10 uppercase tracking-widest text-[10px]",children:"Star Void"}),e.jsx("div",{className:"absolute inset-0 bg-gradient-to-b from-indigo-900/40 via-zinc-950 to-zinc-950"}),e.jsx("div",{className:"absolute top-0 inset-x-0 h-px bg-gradient-to-r from-transparent via-white/30 to-transparent"}),e.jsx("div",{className:"absolute bottom-[-50%] left-1/2 -translate-x-1/2 w-[120%] h-[120%] bg-gradient-to-t from-fuchsia-600/20 via-transparent to-transparent blur-2xl group-hover:bottom-0 transition-all duration-700"})]});t.GRADIENT;const Tr=()=>e.jsx("button",{className:"w-36 h-14 bg-[#fdfaf5] dark:bg-[#0a0a0a] text-zinc-500 font-bold rounded-2xl shadow-[inset_8px_8px_16px_#d9d6d1,inset_-8px_-8px_16px_#ffffff] dark:shadow-[inset_8px_8px_16px_#050505,inset_-8px_-8px_16px_#0f0f0f] hover:shadow-[10px_10px_20px_#d9d6d1,-10px_-10px_20px_#ffffff] dark:hover:shadow-[10px_10px_20px_#050505,-10px_-10px_20px_#0f0f0f] hover:-translate-y-1 transition-all duration-500",children:"Deep Crater"});t.NEUMORPHIC;const Pr=()=>e.jsx("button",{className:"px-8 py-3 bg-white border-2 border-zinc-900 text-zinc-900 font-extrabold rounded-none hover:bg-zinc-900 hover:text-white transition-colors duration-200",children:"STARK_CONTRAST"}),Gr=()=>e.jsx("button",{className:"relative px-10 py-3 bg-zinc-900 text-white font-bold [clip-path:polygon(10%_0,90%_0,100%_10%,100%_90%,90%_100%,10%_100%,0_90%,0_10%)] hover:scale-105 transition-transform",children:"Octagon Cut"});t.MINIMAL;const Or=()=>e.jsxs("button",{className:"relative px-10 py-3 bg-orange-700 text-white font-black rounded-xl overflow-hidden group shadow-[0_10px_30px_rgba(194,65,12,0.3)]",children:[e.jsx("span",{className:"relative z-10 uppercase tracking-widest text-[11px]",children:"Magma Flow"}),e.jsx("div",{className:"absolute inset-0 bg-gradient-to-br from-red-600 via-orange-500 to-yellow-400 group-hover:scale-125 transition-transform duration-700"}),e.jsx("div",{className:"absolute inset-0 bg-[radial-gradient(circle_at_50%_50%,rgba(255,255,255,0.1),transparent_80%)]"}),e.jsx("div",{className:"absolute -inset-2 bg-orange-500/30 blur-2xl opacity-0 group-hover:opacity-100 group-hover:animate-pulse-slow"})]});t.GRADIENT;const Cr=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-transparent border-2 border-indigo-600 text-indigo-600 font-bold rounded-lg overflow-hidden group",children:[e.jsx("span",{className:"relative z-10 group-hover:text-white transition-colors duration-300",children:"Liquid Fill"}),e.jsx("div",{className:"absolute bottom-0 left-0 w-full h-0 bg-indigo-600 group-hover:h-full transition-all duration-500"})]});t.ANIMATED;const Lr=()=>e.jsx("div",{className:"p-10 flex items-center justify-center",children:e.jsxs("button",{className:"relative px-10 py-4 bg-zinc-900/60 backdrop-blur-3xl border border-white/20 text-white font-black rounded-2xl group overflow-hidden shadow-[0_20px_50px_rgba(0,0,0,0.3)] hover:scale-105 active:scale-95 transition-all",children:[e.jsx("span",{className:"relative z-10",children:"Refractive Dark"}),e.jsx("div",{className:"absolute inset-[-100%] bg-[conic-gradient(from_0deg,transparent,rgba(255,255,255,0.2),transparent)] animate-[spin_4s_linear_infinite] group-hover:animate-[spin_2s_linear_infinite]"}),e.jsx("div",{className:"absolute inset-0 bg-gradient-to-br from-white/10 to-transparent"})]})});t.GLASSMORPHIC;const Dr=()=>e.jsx("button",{className:"px-10 py-3 bg-indigo-600 text-white font-bold rounded-2xl hover:rounded-[50%_20%_50%_20%/20%_50%_20%_50%] transition-all duration-700 active:scale-95",children:"Liquid Warp"});t.ANIMATED;const Fr=()=>e.jsx("button",{className:"px-8 py-3 bg-white border-2 border-zinc-200 text-zinc-900 font-bold rounded-2xl hover:border-orange-500 hover:scale-105 hover:rotate-1 transition-all shadow-sm",children:"Pull Edge"});t.MINIMAL;const Hr=()=>e.jsx("button",{className:"w-14 h-14 bg-zinc-900 text-white rounded-full flex items-center justify-center hover:scale-125 hover:rotate-90 hover:shadow-[0_0_30px_#ff7a00] transition-all duration-500 shadow-xl active:scale-95",children:e.jsx(ke,{size:24})});t.ANIMATED;const Br=()=>e.jsx("button",{className:"px-8 py-4 bg-zinc-900 text-white font-bold rounded-2xl hover:translate-x-1 hover:-translate-y-1 hover:shadow-[8px_8px_0_0_#ff7a00] transition-all duration-200 active:translate-x-0 active:translate-y-0 active:shadow-none",children:"Magnetic Move"});t.MINIMAL;const Ur=()=>e.jsx("button",{className:"px-8 py-3 bg-white border border-zinc-200 text-zinc-900 font-bold rounded-xl hover:scale-125 hover:shadow-2xl transition-all duration-300 hover:bg-zinc-50",children:"Magnify"});t.ESSENTIAL;const $r=()=>e.jsx("button",{className:"px-8 py-3 bg-white border-2 border-zinc-900 text-zinc-900 font-bold hover:text-[1.5rem] transition-all duration-300",children:"Text Zoom"});t.EXPERIMENTAL;const qr=()=>e.jsxs("button",{className:"flex items-center gap-2 text-zinc-900 font-bold group",children:[e.jsx("span",{className:"group-hover:mr-2 transition-all",children:"Explore More"}),e.jsx(Ne,{className:"group-hover:translate-x-1 transition-transform",size:18})]});t.MINIMAL;const Yr=()=>e.jsx("button",{className:"px-4 py-1.5 bg-zinc-100 text-zinc-500 text-[10px] font-black uppercase tracking-[0.2em] rounded hover:bg-zinc-900 hover:text-white transition-all",children:"Badge Mode"});t.MINIMAL;const Wr=()=>e.jsxs("button",{className:"flex items-center gap-3 px-6 py-2.5 bg-white border border-zinc-100 rounded-full text-zinc-600 font-semibold hover:border-zinc-300 transition-all shadow-sm",children:[e.jsxs("span",{className:"relative flex h-2 w-2",children:[e.jsx("span",{className:"animate-ping absolute inline-flex h-full w-full rounded-full bg-orange-400 opacity-75"}),e.jsx("span",{className:"relative inline-flex rounded-full h-2 w-2 bg-orange-500"})]}),"Live Status"]}),Xr=()=>e.jsx("button",{className:"px-6 py-2.5 bg-indigo-600 text-white font-semibold rounded-xl shadow-lg shadow-indigo-200 hover:shadow-indigo-300 hover:-translate-y-0.5 active:translate-y-0 transition-all duration-200",children:"Modern Action"});t.ESSENTIAL;const Vr=()=>e.jsx("button",{className:"px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl hover:rounded-full transition-all duration-700 hover:scale-105",children:"Morph Shape"});t.ANIMATED;const Jr=()=>e.jsx("button",{className:"px-8 py-3 bg-orange-400 text-black font-black border-4 border-black shadow-[8px_8px_0_0_#000] hover:shadow-[4px_4px_0_0_#000] hover:translate-x-1 hover:translate-y-1 active:shadow-none active:translate-x-2 active:translate-y-2 transition-all",children:"STAY LOUD"});t.RETRO;const Zr=()=>e.jsx("button",{className:"px-10 py-3 bg-emerald-400 text-emerald-950 font-black rounded-full shadow-[0_0_20px_rgba(52,211,153,0.5)] hover:shadow-[0_0_40px_rgba(52,211,153,0.8)] transition-all uppercase text-sm",children:"Eco Glow"});t.EXPERIMENTAL;const Qr=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-zinc-950 text-emerald-400 font-bold rounded-full group",children:[e.jsx("span",{className:"relative z-10",children:"Pulse Ring"}),e.jsx("div",{className:"absolute inset-0 rounded-full border border-emerald-500 opacity-20 animate-ping group-hover:opacity-50 group-hover:animate-none"}),e.jsx("div",{className:"absolute inset-0 rounded-full bg-emerald-500/10 blur-md group-hover:bg-emerald-500/30 transition-all"})]});t.GRADIENT;const Kr=()=>e.jsx("button",{className:"relative w-32 h-14 bg-gradient-to-b from-[#f0f0f5] to-[#e0e0e8] dark:from-[#1f1f26] dark:to-[#16161e] text-orange-500 font-bold rounded-3xl shadow-[inset_0_12px_24px_-8px_rgba(0,0,0,0.15),inset_0_-12px_24px_-8px_rgba(255,255,255,0.5)] dark:shadow-[inset_0_12px_24px_-8px_rgba(0,0,0,0.5),inset_0_-12px_24px_-8px_rgba(255,255,255,0.08)] hover:shadow-[inset_0_16px_32px_-10px_rgba(0,0,0,0.2),inset_0_-16px_32px_-10px_rgba(255,255,255,0.6)] dark:hover:shadow-[inset_0_16px_32px_-10px_rgba(0,0,0,0.6),inset_0_-16px_32px_-10px_rgba(255,255,255,0.1)] active:shadow-[inset_0_8px_16px_-6px_rgba(0,0,0,0.2),inset_0_-8px_16px_-6px_rgba(255,255,255,0.4)] transition-all duration-300 active:scale-95",children:"Soft Inset"});t.NEUMORPHIC;const et=()=>e.jsx("button",{className:"relative px-12 py-3.5 bg-gradient-to-b from-[#ececf1] to-[#dcdce5] dark:from-[#1a1a22] dark:to-[#12121a] text-gray-600 dark:text-gray-400 font-semibold rounded-full shadow-[inset_0_16px_32px_-12px_rgba(0,0,0,0.18),inset_0_-16px_32px_-12px_rgba(255,255,255,0.55)] dark:shadow-[inset_0_16px_32px_-12px_rgba(0,0,0,0.55),inset_0_-16px_32px_-12px_rgba(255,255,255,0.08)] hover:shadow-[inset_0_20px_40px_-14px_rgba(0,0,0,0.22),inset_0_-20px_40px_-14px_rgba(255,255,255,0.65)] dark:hover:shadow-[inset_0_20px_40px_-14px_rgba(0,0,0,0.65),inset_0_-20px_40px_-14px_rgba(255,255,255,0.1)] active:shadow-[inset_0_10px_20px_-8px_rgba(0,0,0,0.15),inset_0_-10px_20px_-8px_rgba(255,255,255,0.4)] transition-all duration-500 active:scale-95 hover:text-gray-900 dark:hover:text-gray-100",children:"Pill Well"});t.NEUMORPHIC;const rt=()=>e.jsx("button",{className:"relative px-8 py-3 bg-gradient-to-br from-[#1a1a1f] to-[#0f0f14] text-gray-500 dark:text-gray-400 font-semibold rounded-2xl shadow-[0_18px_36px_-10px_rgba(0,0,0,0.8),0_-8px_16px_-8px_rgba(255,255,255,0.05)] hover:shadow-[0_24px_48px_-12px_rgba(0,0,0,0.9),0_-10px_20px_-10px_rgba(255,255,255,0.08)] active:shadow-[inset_0_8px_16px_-8px_rgba(0,0,0,0.6),inset_0_-8px_16px_-8px_rgba(255,255,255,0.05)] transition-all duration-300 active:scale-95",children:"Dark Plate"});t.NEUMORPHIC;const tt=()=>e.jsx("button",{className:"relative px-8 py-3 bg-gradient-to-b from-[#f0f0f5] to-[#dcdce5] dark:from-[#1f1f26] dark:to-[#16161e] text-gray-800 dark:text-gray-200 font-semibold rounded-2xl shadow-[0_15px_30px_-8px_rgba(0,0,0,0.12),0_-6px_12px_-6px_rgba(255,255,255,0.6)] dark:shadow-[0_15px_30px_-8px_rgba(0,0,0,0.7),0_-6px_12px_-6px_rgba(255,255,255,0.08)] hover:shadow-[0_20px_40px_-10px_rgba(0,0,0,0.16),0_-8px_16px_-8px_rgba(255,255,255,0.7)] dark:hover:shadow-[0_20px_40px_-10px_rgba(0,0,0,0.8),0_-8px_16px_-8px_rgba(255,255,255,0.1)] active:shadow-[inset_0_6px_12px_-6px_rgba(0,0,0,0.15),inset_0_-6px_12px_-6px_rgba(255,255,255,0.4)] dark:active:shadow-[inset_0_6px_12px_-6px_rgba(0,0,0,0.5),inset_0_-6px_12px_-6px_rgba(255,255,255,0.08)] transition-all duration-200 active:scale-95",children:"Hard Stamp"});t.NEUMORPHIC;const at=()=>e.jsx("button",{className:"px-6 py-2 bg-[#2a2a2a] text-[#ffd700] font-mono border-t-2 border-l-2 border-[#555] border-b-2 border-r-2 border-black hover:bg-black transition-colors shadow-lg",children:"[ COMMAND_LINK ]"});t.RETRO;const ot=()=>e.jsxs("button",{className:"relative px-8 py-3 bg-zinc-900 text-white font-bold rounded-xl group overflow-hidden",children:[e.jsx("span",{className:"relative z-10",children:"Comet Tail"}),e.jsx("div",{className:"absolute top-0 left-0 w-2 h-2 bg-orange-500 rounded-full blur-sm -translate-x-full group-hover:animate-[comet_1s_linear_infinite]"}),e.jsx("style",{children:`
|
|
84
|
+
@keyframes comet {
|
|
85
|
+
0% { transform: translate(0, 0); opacity: 1; }
|
|
86
|
+
25% { transform: translate(100%, 0); }
|
|
87
|
+
50% { transform: translate(100%, 100%); }
|
|
88
|
+
75% { transform: translate(0, 100%); }
|
|
89
|
+
100% { transform: translate(0, 0); opacity: 1; }
|
|
90
|
+
}
|
|
91
|
+
`})]});t.ANIMATED;const nt=()=>e.jsx("button",{className:"px-8 py-3 border-2 border-orange-500 text-orange-500 font-bold rounded-xl hover:bg-orange-500 hover:text-white transition-all duration-300",children:"Fill Rise"});t.MINIMAL;exports.ArcadeGreen=fe;exports.BentoBox=Ie;exports.BorderBeam=Me;exports.BorderTrace=Se;exports.BouncyIcon=Te;exports.Brutalist=xe;exports.ButtonCategory=t;exports.ChevronExpand=Pe;exports.Classic90s=Ge;exports.ClaySoftPill=Oe;exports.Claymorphic=de;exports.ContrastFrame=Ce;exports.CyberBevel=Le;exports.CyberGlow=De;exports.CyberGradient=Fe;exports.CyberSlice=He;exports.Cyberpunk=Be;exports.DashRotate=$e;exports.DashedReveal=Ue;exports.DeepBlurGlass=qe;exports.DepthSlide=Ye;exports.DiagonalStripes=We;exports.DiamondCut=Xe;exports.DotPattern=Ve;exports.DoubleShadow=Je;exports.DualTone=Ze;exports.ElevatedFloat=Qe;exports.EtherealBlur=Ke;exports.ExpandingAura=er;exports.ExpandingPill=rr;exports.FloatingLabel=tr;exports.FloatingPulse=ar;exports.FloatingShadow=or;exports.FragmentButton=nr;exports.GhostReveal=sr;exports.GlassCard=ce;exports.GlassDouble=ir;exports.GlassFrostedInner=lr;exports.GlassFrostyPill=dr;exports.GlassFusion=cr;exports.GlassGlow=pr;exports.GlassInset=xr;exports.GlassReflective=ur;exports.GlassRefraction=br;exports.GlassStroke=gr;exports.GlitchEffect=he;exports.GlowGhost=hr;exports.GlowOutline=_r;exports.GooeyButton=fr;exports.GradientConic=vr;exports.GradientMorph=mr;exports.GradientPulse=wr;exports.GradientShadow=be;exports.GradientWave=yr;exports.GridOverlay=Nr;exports.HandDrawn=jr;exports.HighElevatedNeumorphic=Er;exports.Holographic=kr;exports.IconBounce=Rr;exports.IndependentShadow=Ar;exports.IndicatorButton=zr;exports.IndustrialPlate=Ir;exports.InnerGlow=Mr;exports.InnerGlowPill=Sr;exports.InnerShadowDepth=Tr;exports.InvertedMinimal=Pr;exports.InvertedRound=Gr;exports.LavaFlow=Or;exports.LiquidFill=Cr;exports.LiquidGradient=_e;exports.LiquidPrism=Lr;exports.LiquidWarp=Dr;exports.MagneticBorder=Fr;exports.MagneticCircle=Hr;exports.MagneticSoft=Br;exports.MagnifyHover=Ur;exports.MagnifyText=$r;exports.MinimalArrow=qr;exports.MinimalBadge=Yr;exports.MinimalPulse=Wr;exports.ModernMinimal=ge;exports.ModernPrimary=Xr;exports.MorphingShape=Vr;exports.NeoHardShadow=Jr;exports.NeonBorder=ue;exports.NeonPill=Zr;exports.NeonPulseRing=Qr;exports.NeumorphicConcave=Kr;exports.NeumorphicConcavePill=et;exports.NeumorphicDark=rt;exports.NeumorphicEmbossed=tt;exports.NeumorphicSoft=pe;exports.OldTerminal=at;exports.OutlineComet=ot;exports.OutlineGrow=nt;
|
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@coolbuttons/react",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "400+ production-ready button components for React",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.esm.js",
|
|
8
|
+
"types": "./dist/types.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.esm.js",
|
|
12
|
+
"require": "./dist/index.js",
|
|
13
|
+
"types": "./dist/types.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "vite build",
|
|
21
|
+
"dev": "vite build --watch",
|
|
22
|
+
"prepublishOnly": "npm run build"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
26
|
+
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/react": "^19.0.0",
|
|
30
|
+
"@types/react-dom": "^19.0.0",
|
|
31
|
+
"react": "^19.0.0",
|
|
32
|
+
"react-dom": "^19.0.0",
|
|
33
|
+
"typescript": "^5.0.0",
|
|
34
|
+
"vite": "^6.0.0"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"buttons",
|
|
38
|
+
"react",
|
|
39
|
+
"components",
|
|
40
|
+
"ui",
|
|
41
|
+
"tailwindcss",
|
|
42
|
+
"claymorphic",
|
|
43
|
+
"neumorphic",
|
|
44
|
+
"glassmorphic"
|
|
45
|
+
],
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "https://github.com/devchauhann/coolbuttons.git"
|
|
49
|
+
},
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/devchauhann/coolbuttons/issues"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://coolbuttons.dev"
|
|
54
|
+
}
|