Skip to content

Commit

Permalink
fix(Menu): props now have default values so not required
Browse files Browse the repository at this point in the history
  • Loading branch information
LexSwed committed Oct 3, 2020
1 parent c9e006e commit db7b2f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/Menu/MenuList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const List = styled('ul', {

type UlListProps = React.ComponentProps<typeof List>;
type Props = UlListProps & {
offset: number;
placement: Options['placement'];
offset?: number;
placement?: Options['placement'];
};

const UlList: React.FC<Props> = (ulProps) => {
Expand Down

0 comments on commit db7b2f3

Please sign in to comment.