Merge branch 'main' into ts_Form+Home

This commit is contained in:
Timo K
2022-07-27 23:47:56 +02:00
26 changed files with 3591 additions and 3781 deletions

View File

@@ -121,8 +121,10 @@ export const Button = forwardRef<HTMLButtonElement, Props>(
{...mergeProps(rest, filteredButtonProps)}
ref={buttonRef}
>
{children}
{variant === "dropdown" && <ArrowDownIcon />}
<>
{children}
{variant === "dropdown" && <ArrowDownIcon />}
</>
</button>
);
}