Stop mouseUp propagation in statuses

This commit is contained in:
Alex Gleason
2022-11-19 14:36:58 -06:00
parent a0597a6445
commit e973d69c61
10 changed files with 269 additions and 259 deletions

View File

@ -27,7 +27,7 @@ const spaces = {
8: 'space-x-8',
};
interface IHStack {
interface IHStack extends Pick<React.HTMLAttributes<HTMLDivElement>, 'onClick' | 'onMouseUp' | 'onMouseDown'> {
/** Vertical alignment of children. */
alignItems?: keyof typeof alignItemsOptions
/** Extra class names on the <div> element. */