@atmos.build/ui 0.1.8 → 0.1.9

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.
@@ -2,5 +2,5 @@
2
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import { cn } from '../lib/cn.js';
4
4
  export function EmptyState({ icon: Icon, title, description, action, className, busy, }) {
5
- return (_jsxs("div", { role: "status", className: cn('flex flex-col items-center justify-center gap-2 py-10 px-6 text-center', className), children: [Icon ? (_jsx(Icon, { className: cn('size-6 text-muted-foreground/60', busy && 'animate-spin motion-reduce:animate-none'), strokeWidth: 1.5, "aria-hidden": true })) : null, _jsx("div", { className: "text-[13px] font-medium text-foreground", children: title }), description ? (_jsx("div", { className: "text-[12px] text-muted-foreground max-w-[36ch]", children: description })) : null, action ? _jsx("div", { className: "mt-2", children: action }) : null] }));
5
+ return (_jsxs("div", { role: "status", className: cn('flex flex-col items-center justify-center gap-2 py-10 px-6 text-center', className), children: [Icon ? (_jsx(Icon, { className: cn('size-4 text-muted-foreground/60', busy && 'animate-spin motion-reduce:animate-none'), strokeWidth: 1.5, "aria-hidden": true })) : null, _jsx("div", { className: "text-[13px] font-normal text-muted-foreground", children: title }), description ? (_jsx("div", { className: "text-[12px] text-muted-foreground max-w-[36ch]", children: description })) : null, action ? _jsx("div", { className: "mt-2", children: action }) : null] }));
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atmos.build/ui",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "The complete atmOS React component system and MCP App authoring helpers.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",