Fix links in actions modal
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
@ -41,7 +41,7 @@ interface IHStack extends Pick<React.HTMLAttributes<HTMLDivElement>, 'children'
|
||||
/** Whether to let the flexbox grow. */
|
||||
grow?: boolean;
|
||||
/** HTML element to use for container. */
|
||||
element?: keyof JSX.IntrinsicElements;
|
||||
element?: React.ComponentType | keyof JSX.IntrinsicElements;
|
||||
/** Whether to let the flexbox wrap onto multiple lines. */
|
||||
wrap?: boolean;
|
||||
}
|
||||
|
||||
@ -39,7 +39,7 @@ interface IStack extends React.HTMLAttributes<HTMLDivElement> {
|
||||
/** Whether to let the flexbox grow. */
|
||||
grow?: boolean;
|
||||
/** HTML element to use for container. */
|
||||
element?: keyof JSX.IntrinsicElements;
|
||||
element?: React.ComponentType | keyof JSX.IntrinsicElements;
|
||||
}
|
||||
|
||||
/** Vertical stack of child elements. */
|
||||
|
||||
Reference in New Issue
Block a user