Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
dougfabris committed Jul 17, 2024
1 parent 85992c7 commit 2d16603
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import type { ComponentProps } from 'react';
import React from 'react';

import type Box from '../../Box';
import { Button } from '../../Button';

type TableSelectionButtonProps = ComponentProps<typeof Box>;
type TableSelectionButtonProps = ComponentProps<typeof Button>;

export const TableSelectionButton = (props: TableSelectionButtonProps) => (
<Button small flexShrink={0} {...props} />
Expand Down

0 comments on commit 2d16603

Please sign in to comment.