Merge remote-tracking branch 'origin/develop' into chats
This commit is contained in:
@ -16,6 +16,7 @@ const spaces = {
|
||||
|
||||
const justifyContentOptions = {
|
||||
center: 'justify-center',
|
||||
end: 'justify-end',
|
||||
};
|
||||
|
||||
const alignItemsOptions = {
|
||||
@ -29,7 +30,7 @@ interface IStack extends React.HTMLAttributes<HTMLDivElement> {
|
||||
/** Horizontal alignment of children. */
|
||||
alignItems?: 'center' | 'start',
|
||||
/** Vertical alignment of children. */
|
||||
justifyContent?: 'center'
|
||||
justifyContent?: keyof typeof justifyContentOptions
|
||||
/** Extra class names on the <div> element. */
|
||||
className?: string
|
||||
/** Whether to let the flexbox grow. */
|
||||
|
||||
Reference in New Issue
Block a user