Skip to content

Commit

Permalink
chore #67 : basebutton폴더 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
minh0518 committed Feb 26, 2025
1 parent 501bb40 commit fa23612
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/assets/styles/button.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ReactNode } from 'react';

import { BaseButtonProps } from '@/common/components/base-button/base-button';
import { BaseButtonProps } from '@/common/components/button/base-button';

import { colors } from './colors';

Expand Down
2 changes: 1 addition & 1 deletion src/common/components/button/Button.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { forwardRef } from 'react';

import { IconOnlyProps, TextAndIconProps, TextOnlyProps } from '@/assets/styles/button';
import { BaseButton } from '@/common/components/base-button/base-button';
import { BaseButton } from '@/common/components/button/base-button';

import * as styles from './button.styles';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ButtonHTMLAttributes, forwardRef, ReactNode } from 'react';
import { ButtonHTMLAttributes, forwardRef } from 'react';

import { Slot } from '@radix-ui/react-slot';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { forwardRef } from 'react';

import { BaseButton, BaseButtonProps } from '@/common/components/base-button/base-button';
import { BaseButton, BaseButtonProps } from '@/common/components/button/base-button';

import * as styles from './kakao-auth-button.styles';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { forwardRef } from 'react';

import { BaseButton, BaseButtonProps } from '@/common/components/base-button/base-button';
import { BaseButton, BaseButtonProps } from '@/common/components/button/base-button';

import * as styles from './accordion-trigger-button.styles';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ButtonHTMLAttributes, forwardRef } from 'react';
import { MdOutlineKeyboardDoubleArrowRight } from 'react-icons/md';

import { BaseButton } from '@/common/components/base-button/base-button';
import { BaseButton } from '@/common/components/button/base-button';

const SidebarCloseButton = forwardRef<HTMLButtonElement, ButtonHTMLAttributes<HTMLButtonElement>>(
(props, ref) => (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ButtonHTMLAttributes, forwardRef } from 'react';
import { MdOutlineKeyboardDoubleArrowLeft } from 'react-icons/md';

import { BaseButton } from '@/common/components/base-button/base-button';
import { BaseButton } from '@/common/components/button/base-button';

const SidebarOpenButton = forwardRef<HTMLButtonElement, ButtonHTMLAttributes<HTMLButtonElement>>(
(props, ref) => (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { forwardRef } from 'react';

import { BaseButton, BaseButtonProps } from '../../../../common/components/base-button/base-button';
import { BaseButton, BaseButtonProps } from '../../../../common/components/button/base-button';

import * as styles from './single-content-button.styles';

Expand Down

0 comments on commit fa23612

Please # to comment.