myoperator-ui 0.0.76 → 0.0.77
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.js +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3207,7 +3207,6 @@ export interface PageHeaderProps
|
|
|
3207
3207
|
const PageHeader = React.forwardRef<HTMLDivElement, PageHeaderProps>(
|
|
3208
3208
|
({
|
|
3209
3209
|
className,
|
|
3210
|
-
variant,
|
|
3211
3210
|
title,
|
|
3212
3211
|
description,
|
|
3213
3212
|
icon,
|
|
@@ -3247,7 +3246,7 @@ const PageHeader = React.forwardRef<HTMLDivElement, PageHeaderProps>(
|
|
|
3247
3246
|
<div
|
|
3248
3247
|
ref={ref}
|
|
3249
3248
|
className={cn(
|
|
3250
|
-
pageHeaderVariants(
|
|
3249
|
+
pageHeaderVariants(),
|
|
3251
3250
|
"h-[76px] px-4",
|
|
3252
3251
|
className
|
|
3253
3252
|
)}
|