Skip to content

Commit

Permalink
fix: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-cratebind committed Dec 30, 2021
1 parent bda453e commit 891d9fd
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion src/Checkbox/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React, { forwardRef } from 'react';
import { CustomCheckboxContainer, CustomCheckboxInput } from '@reach/checkbox';
import { MinervaProps, Box } from '../layout';
import PseudoBox from '../PseudoBox';
import { useComponentStyles } from '../theme';

type BaseProps = MinervaProps & React.InputHTMLAttributes<HTMLInputElement>;
Expand Down
1 change: 0 additions & 1 deletion src/Menu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import { Box, MinervaProps } from '../layout';
// import { useTheme } from '../theme';

// import '@reach/menu-button/styles.css';
import PseudoBox from '../PseudoBox';

export type MenuContainerProps = MenuProps;

Expand Down
1 change: 0 additions & 1 deletion src/Radio/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import React, { useContext } from 'react';
import { MinervaProps } from '../layout';
import { Box } from '../layout';
import { useComponentStyles } from '../theme';
import { PseudoBox } from '..';

export interface RadioGroupProps {
children?: React.ReactNode;
Expand Down
2 changes: 1 addition & 1 deletion src/Tabs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {

import { MinervaProps, Box, Flex } from '../layout';
import { useComponentStyles } from '../theme';
import PseudoBox, { PseudoBoxProps } from '../PseudoBox';
import { PseudoBoxProps } from '../PseudoBox';
import { forwardRefWithAs } from '../type-utilities';

// export interface TabsProps extends MinervaProps, PseudoBoxProps, ReachTabsProps { }
Expand Down

0 comments on commit 891d9fd

Please sign in to comment.