Skip to content

Commit

Permalink
fix: type 설정 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
WooDaeHyun committed Oct 14, 2023
1 parent 4ee2096 commit bf13e1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/Base/FloatingButton.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { IconPlus } from '@public/icons';
import { ComponentProps } from 'react';
import { ComponentPropsWithoutRef } from 'react';
import { createPortal } from 'react-dom';

interface FloatingButtonProps extends ComponentProps<'button'> {
interface FloatingButtonProps extends ComponentPropsWithoutRef<'button'> {
position: 'lt' | 'rt' | 'lb' | 'rb';
}

Expand Down

0 comments on commit bf13e1e

Please sign in to comment.