Skip to content

Commit

Permalink
up size limit
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking committed Aug 21, 2021
1 parent 4506046 commit cf07059
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@
"size-limit": [
{
"path": "dist/components.cjs.production.min.js",
"limit": "50 KB"
"limit": "70 KB"
},
{
"path": "dist/components.esm.js",
"limit": "50 KB"
"limit": "70 KB"
}
],
"devDependencies": {
Expand Down
8 changes: 1 addition & 7 deletions src/dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
import React, {
CSSProperties,
ReactNode,
useState,
useCallback,
useRef,
} from 'react';
import React, { ReactNode, useState, useCallback, useRef } from 'react';
import { DropdownButton, DropdownButtonProps } from './DropdownButton';
import { DropdownMenu } from './DropdownMenu';
import { DropdownTrigger, DropdownTriggerProps } from './DropdownTrigger';
Expand Down

0 comments on commit cf07059

Please sign in to comment.