diff --git a/packages/react/src/components/Button/Button.tsx b/packages/react/src/components/Button/Button.tsx index 12939ba..2d05d8d 100644 --- a/packages/react/src/components/Button/Button.tsx +++ b/packages/react/src/components/Button/Button.tsx @@ -2,12 +2,12 @@ import React, { forwardRef } from 'react'; -const Button = forwardRef( +const Button = forwardRef( ( - { children }, + { children, id }, ref ) => { - return + return } )