codex/broker-dashboard-redesign #49

Merged
ksv741 merged 19 commits from codex/broker-dashboard-redesign into main 2026-06-27 16:55:04 +03:00
Showing only changes of commit a1377fa5c2 - Show all commits

View File

@ -8,6 +8,7 @@ type BrokerDashboardCardProps = {
filters?: ReactNode
children: ReactNode
sx?: SxProps<Theme>
ariaLabel?: string
}
export function BrokerDashboardCard({
@ -16,10 +17,12 @@ export function BrokerDashboardCard({
filters,
children,
sx,
ariaLabel,
}: BrokerDashboardCardProps) {
return (
<Box
component="section"
aria-label={ariaLabel}
sx={{
border: '1px solid',
borderColor: 'divider',