diff --git a/packages/react/src/components/Avatar/Avatar.tsx b/packages/react/src/components/Avatar/Avatar.tsx index beb6ac6173..42db9861ea 100644 --- a/packages/react/src/components/Avatar/Avatar.tsx +++ b/packages/react/src/components/Avatar/Avatar.tsx @@ -52,7 +52,7 @@ export type AvatarProps = { export const Avatar = forwardRef(function Avatar( { 'aria-label': ariaLabel, - color = 'accent', + color, variant = 'circle', className, children, diff --git a/packages/react/src/components/Badge/Badge.tsx b/packages/react/src/components/Badge/Badge.tsx index b2d14b4f5d..c4a5cba0ad 100644 --- a/packages/react/src/components/Badge/Badge.tsx +++ b/packages/react/src/components/Badge/Badge.tsx @@ -54,7 +54,7 @@ export type BadgeProps = { export const Badge = forwardRef(function Badge( { className, - color = 'accent', + color, count, maxCount, overlap = 'rectangle', diff --git a/packages/react/src/components/Button/Button.tsx b/packages/react/src/components/Button/Button.tsx index 747e95c91e..3597390915 100644 --- a/packages/react/src/components/Button/Button.tsx +++ b/packages/react/src/components/Button/Button.tsx @@ -47,7 +47,7 @@ export const Button = forwardRef( asChild, className, children, - color = 'accent', + color, icon = false, loading = false, variant = 'primary', diff --git a/packages/react/src/components/Link/Link.tsx b/packages/react/src/components/Link/Link.tsx index 6ff58f4517..69d67aa4eb 100644 --- a/packages/react/src/components/Link/Link.tsx +++ b/packages/react/src/components/Link/Link.tsx @@ -26,7 +26,7 @@ export type LinkProps = { } & AnchorHTMLAttributes; export const Link = forwardRef( - ({ asChild, className, color = 'accent', ...rest }, ref) => { + ({ asChild, className, color, ...rest }, ref) => { const Component = asChild ? Slot : 'a'; return (