MetricWidget bigger

This commit is contained in:
2026-07-02 15:58:39 +05:00
parent 95690f76ec
commit f60451ecb1
7 changed files with 153 additions and 93 deletions

View File

@@ -0,0 +1,7 @@
import type { PropsWithChildren } from 'react';
type MetricWidgetsContainerProps = PropsWithChildren;
export function MetricWidgetsContainer({ children }: MetricWidgetsContainerProps) {
return <div className="metric-widgets-grid">{children}</div>;
}