admin-panel-ui-components 0.1.4 → 0.1.5
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/dist/Button.d.ts +1 -0
- package/dist/Button.js +1 -0
- package/dist/styles.css +7 -0
- package/package.json +1 -1
- package/src/Button.tsx +1 -0
- package/src/styles.css +7 -0
package/dist/Button.d.ts
CHANGED
package/dist/Button.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { twMerge } from "tailwind-merge";
|
|
3
|
+
import "./index.css";
|
|
3
4
|
var Button = function (_a) {
|
|
4
5
|
var children = _a.children, _b = _a.variant, variant = _b === void 0 ? "primary" : _b, onClick = _a.onClick, className = _a.className;
|
|
5
6
|
var baseClasses = "text-base font-semibold rounded-lg transition px-6 py-3";
|
package/dist/styles.css
ADDED
package/package.json
CHANGED
package/src/Button.tsx
CHANGED