Resolve remaining review notes

This commit is contained in:
bree
2021-07-04 21:22:33 -04:00
parent 8ece647857
commit c194fff7fd
5 changed files with 16 additions and 12 deletions

View File

@@ -33,7 +33,6 @@ const CategoryBase = styled.div<Pick<Props, 'variant'>>`
type Props = Omit<JSX.HTMLAttributes<HTMLDivElement>, 'children' | 'as' | 'action'> & {
text: Children;
// TODO: rename from action to prevent type conflicts with the dom
action?: () => void;
variant?: 'default' | 'uniform';
}