Skip to content

Commit

Permalink
refactor: #25 move svg files (#26)
Browse files Browse the repository at this point in the history
### changes

svg 파일들을 /assets 아래로 옮겼습니다!
  • Loading branch information
anyl92 authored Sep 8, 2023
2 parents 380286a + 82df137 commit 692cb34
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
6 changes: 3 additions & 3 deletions src/components/search/SearchForm.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { useRef } from 'react'

import { SearchFormProps } from './type'
import { ReactComponent as ButtonSearchIcon } from '../../styles/svg/buttonSearchIcon.svg'
import { ReactComponent as ClearIcon } from '../../styles/svg/clearIcon.svg'
import { ReactComponent as PlaceholderSearchIcon } from '../../styles/svg/placeholderSearchIcon.svg'
import { ReactComponent as ButtonSearchIcon } from '../../assets/svg/buttonSearchIcon.svg'
import { ReactComponent as ClearIcon } from '../../assets/svg/clearIcon.svg'
import { ReactComponent as PlaceholderSearchIcon } from '../../assets/svg/placeholderSearchIcon.svg'

import * as S from './Search.styled'

Expand Down
2 changes: 1 addition & 1 deletion src/components/search/SearchSuggestion.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { SearchSuggestionProps } from './type'
import { SickObj } from '../../apis/suggestion'
import { ReactComponent as PlaceholderSearchIcon } from '../../styles/svg/placeholderSearchIcon.svg'
import { ReactComponent as PlaceholderSearchIcon } from '../../assets/svg/placeholderSearchIcon.svg'

import * as S from './SearchSuggestion.styled'

Expand Down

0 comments on commit 692cb34

Please sign in to comment.