@tapizlabs/ui 0.2.7 → 0.2.8

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/index.d.ts CHANGED
@@ -102,8 +102,10 @@ interface LogoMarkProps {
102
102
  bgClassName?: string;
103
103
  bgFill?: string;
104
104
  bgOpacity?: number;
105
+ /** Product glyph: "lms" = T monogram, "boards" = kanban columns */
106
+ variant?: "lms" | "boards";
105
107
  }
106
- declare const LogoMark: ({ size, className, }: LogoMarkProps) => react.JSX.Element;
108
+ declare const LogoMark: ({ size, className, bgClassName, bgFill, bgOpacity, variant, }: LogoMarkProps) => react.JSX.Element;
107
109
 
108
110
  declare const FormIcon: ({ size, className, style }: IconProps) => react.JSX.Element;
109
111
  declare const CalendarWeek: ({ size, className, style }: IconProps) => react.JSX.Element;
package/dist/index.js CHANGED
@@ -494,24 +494,28 @@ var Clock = ({ size = 13, className, style }) => /* @__PURE__ */ jsxs5("svg", {
494
494
  import { jsx as jsx6, jsxs as jsxs6 } from "react/jsx-runtime";
495
495
  var LogoMark = ({
496
496
  size = 28,
497
- className
497
+ className,
498
+ bgClassName,
499
+ bgFill = "#1496b3",
500
+ bgOpacity = 1,
501
+ variant = "lms"
498
502
  }) => /* @__PURE__ */ jsxs6(
499
503
  "svg",
500
504
  {
501
505
  width: size,
502
506
  height: size,
503
- className: `${className} w-[${size}px] h-[${size}px]`,
504
- viewBox: "0 0 32 32",
507
+ className,
508
+ viewBox: "0 0 64 64",
505
509
  fill: "none",
506
510
  children: [
507
- /* @__PURE__ */ jsx6("rect", { width: "32", height: "32", rx: "8", fill: "none" }),
508
- /* @__PURE__ */ jsx6("path", { d: "M5 9 L5 5 L9 5", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "square" }),
509
- /* @__PURE__ */ jsx6("path", { d: "M23 5 L27 5 L27 9", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "square" }),
510
- /* @__PURE__ */ jsx6("path", { d: "M5 23 L5 27 L9 27", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "square" }),
511
- /* @__PURE__ */ jsx6("path", { d: "M23 27 L27 27 L27 23", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "square", className: "opacity-50" }),
512
- /* @__PURE__ */ jsxs6("g", { fill: "currentColor", children: [
513
- /* @__PURE__ */ jsx6("rect", { x: "15", y: "10", width: "2", height: "14" }),
514
- /* @__PURE__ */ jsx6("rect", { x: "10", y: "10", width: "12", height: "2" })
511
+ /* @__PURE__ */ jsx6("rect", { width: "64", height: "64", rx: "14", fill: bgFill, opacity: bgOpacity, className: bgClassName }),
512
+ variant === "lms" ? /* @__PURE__ */ jsxs6("g", { fill: "#fff", children: [
513
+ /* @__PURE__ */ jsx6("rect", { x: "14", y: "14", width: "36", height: "10", rx: "3" }),
514
+ /* @__PURE__ */ jsx6("rect", { x: "27", y: "14", width: "10", height: "36", rx: "3" })
515
+ ] }) : /* @__PURE__ */ jsxs6("g", { fill: "#fff", children: [
516
+ /* @__PURE__ */ jsx6("rect", { x: "13", y: "15", width: "10", height: "26", rx: "5" }),
517
+ /* @__PURE__ */ jsx6("rect", { x: "27", y: "15", width: "10", height: "34", rx: "5" }),
518
+ /* @__PURE__ */ jsx6("rect", { x: "41", y: "15", width: "10", height: "20", rx: "5" })
515
519
  ] })
516
520
  ]
517
521
  }