Skip to content

Commit

Permalink
[FE][Feat] 아이콘 변경 및 출발지 도착지 순서 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
leedongyull committed Dec 4, 2024
1 parent bbfc0e6 commit 3208330
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions frontend/src/component/common/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { FaPaintBrush } from 'react-icons/fa';
import { HiLocationMarker, HiOutlineDotsHorizontal, HiOutlineLocationMarker } from 'react-icons/hi';
import { HiLocationMarker, HiOutlineDotsHorizontal } from 'react-icons/hi';
import { SlLayers } from 'react-icons/sl';
import { RiFlag2Fill } from 'react-icons/ri';
import { ButtonState } from './enums';

/**
Expand All @@ -11,7 +12,7 @@ export const IconType = {
CLOSE: SlLayers, // 닫기 버튼 아이콘
OPEN: HiOutlineDotsHorizontal, // 열기 버튼 아이콘
START_MARKER: HiLocationMarker, // 출발지 설정 아이콘
DESTINATION_MARKER: HiOutlineLocationMarker, // 도착지 설정 아이콘
DESTINATION_MARKER: RiFlag2Fill, // 도착지 설정 아이콘
LINE_DRAWING: FaPaintBrush, // 경로 그리기 아이콘
};
/**
Expand All @@ -29,14 +30,14 @@ export const ToolCategory = [
description: '경로 그리기', // 툴 설명
icon: IconType.LINE_DRAWING, // 툴 아이콘
},
{
type: ButtonState.START_MARKER, // 출발지 설정 툴
description: '출발지 설정', // 툴 설명
icon: IconType.START_MARKER, // 툴 아이콘
},
{
type: ButtonState.DESTINATION_MARKER, // 도착지 설정 툴
description: '도착지 설정', // 툴 설명
icon: IconType.DESTINATION_MARKER, // 툴 아이콘
},
{
type: ButtonState.START_MARKER, // 출발지 설정 툴
description: '출발지 설정', // 툴 설명
icon: IconType.START_MARKER, // 툴 아이콘
},
];

0 comments on commit 3208330

Please sign in to comment.