+ A minimal custom Button injected through ComponentsProvider, replacing the default. +
++ Same default Button, different look — achieved by overriding CSS custom properties on a wrapper element. +
+{children}
+ > + ); +} + +function Pf6AlertBox({ + variant, + isDark, + children, +}: { + variant: string; + isDark: boolean; + children: ReactNode; +}): ReactElement { + const colors = PF6_ALERT_COLORS[variant] ?? PF6_ALERT_COLORS['custom']; + const statusColor = isDark ? colors!.dark : colors!.light; + + return ( +