UNPKG

ai-react-ui

Version:

An AI-friendly React UI component library

62 lines (61 loc) 2.65 kB
"use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __rest = (this && this.__rest) || function (s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Button = void 0; var react_1 = __importDefault(require("react")); var ThemeProvider_1 = require("../theme/ThemeProvider"); var Button = function (_a) { var _b = _a.variant, variant = _b === void 0 ? "primary" : _b, _c = _a.size, size = _c === void 0 ? "medium" : _c, _d = _a.fullWidth, fullWidth = _d === void 0 ? false : _d, children = _a.children, style = _a.style, props = __rest(_a, ["variant", "size", "fullWidth", "children", "style"]); var theme = (0, ThemeProvider_1.useTheme)().theme; var baseStyles = { padding: theme.spacing[size], fontSize: theme.typography.sizes[size], fontWeight: theme.typography.weights.medium, borderRadius: "4px", border: "none", cursor: "pointer", transition: "all 0.2s ease", width: fullWidth ? "100%" : "auto", }; var variantStyles = { primary: { backgroundColor: theme.colors.primary, color: theme.colors.background, }, secondary: { backgroundColor: theme.colors.secondary, color: theme.colors.background, }, outline: { backgroundColor: "transparent", color: theme.colors.primary, border: "1px solid ".concat(theme.colors.primary), }, }; return (react_1.default.createElement("button", __assign({ style: __assign(__assign(__assign({}, baseStyles), variantStyles[variant]), style) }, props), children)); }; exports.Button = Button;