Fix links in actions modal

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-05-05 12:19:55 +02:00
parent 2fc245f871
commit 2c433c15e1
3 changed files with 7 additions and 6 deletions

View File

@ -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;
}

View File

@ -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. */