From bc2020f5603b52c2ad747c49c2e95938266a7f4f Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 19 Jul 2024 00:34:42 +0900 Subject: [PATCH] feat(button): add default role for aria --- packages/react/components/Button.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/react/components/Button.tsx b/packages/react/components/Button.tsx index 3ad8f67..6ac6cb5 100644 --- a/packages/react/components/Button.tsx +++ b/packages/react/components/Button.tsx @@ -111,7 +111,8 @@ export interface ButtonProps const Button = React.forwardRef( (props, ref) => { const [variantProps, otherPropsCompressed] = resolveVariants(props); - const { asChild, type, ...otherPropsExtracted } = otherPropsCompressed; + const { asChild, type, role, ...otherPropsExtracted } = + otherPropsCompressed; const Comp = asChild ? Slot : "button"; @@ -120,6 +121,7 @@ const Button = React.forwardRef( ref={ref} type={type ?? "button"} className={buttonVariants(variantProps)} + role={role ?? "button"} {...otherPropsExtracted} /> );