diff --git a/packages/react/src/FrostedGlassVFX/FrostedGlassVFX.tsx b/packages/react/src/FrostedGlassVFX/FrostedGlassVFX.tsx index 8e30ed543..6dab444eb 100644 --- a/packages/react/src/FrostedGlassVFX/FrostedGlassVFX.tsx +++ b/packages/react/src/FrostedGlassVFX/FrostedGlassVFX.tsx @@ -20,7 +20,7 @@ export type FrostedGlassVFXProps = BaseProps & /** * Applies rounded corners */ - roundedCorners?: boolean + hasBorderRadius?: boolean /** * Controls the blur amount */ @@ -32,7 +32,7 @@ export type FrostedGlassVFXProps = BaseProps & * {@link https://primer.style/brand/components/FrostedGlassVFX/ See usage examples}. */ export function FrostedGlassVFX({ - roundedCorners = true, + hasBorderRadius = true, children, className, intensity = defaultFrostedGlassVFXIntensity, @@ -42,7 +42,7 @@ export function FrostedGlassVFX({