@harborclient/sdk 1.1.2 → 1.1.4
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.
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsx as _jsx } from "@harborclient/sdk/jsx-runtime";
|
|
2
2
|
import { cn } from '../utils.js';
|
|
3
3
|
/**
|
|
4
4
|
* Muted placeholder for sidebar sections and lists that have no items to show.
|
|
5
5
|
* Spacing such as top margin is left to callers via `className`.
|
|
6
6
|
*/
|
|
7
7
|
export function EmptySectionLabel({ label, className, ...props }) {
|
|
8
|
-
return (
|
|
8
|
+
return (_jsx("span", { ...props, className: cn('hc-empty-section-label mx-auto my-2 w-[90%] rounded-full border border-dashed border-separator py-1 text-center text-[14px] text-muted uppercase', className), children: label }));
|
|
9
9
|
}
|