Merge remote-tracking branch 'origin/develop' into chats

This commit is contained in:
Alex Gleason
2022-11-27 15:30:00 -06:00
146 changed files with 968 additions and 1151 deletions

View File

@ -22,8 +22,10 @@ const spaces = {
1: 'space-x-1',
1.5: 'space-x-1.5',
2: 'space-x-2',
2.5: 'space-x-2.5',
3: 'space-x-3',
4: 'space-x-4',
5: 'space-x-5',
6: 'space-x-6',
8: 'space-x-8',
};
@ -59,7 +61,7 @@ const HStack = forwardRef<HTMLDivElement, IHStack>((props, ref) => {
<Elem
{...filteredProps}
ref={ref}
className={classNames('flex', {
className={classNames('flex rtl:space-x-reverse', {
// @ts-ignore
[alignItemsOptions[alignItems]]: typeof alignItems !== 'undefined',
// @ts-ignore