-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[Feat/#78] νλ‘ν νμ΄μ§ ꡬν (νμΈμ΄ λ΄€μ λ λ§μ΄νμ΄μ§)
- Loading branch information
Showing
34 changed files
with
1,580 additions
and
91 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import * as React from "react"; | ||
import type { SVGProps } from "react"; | ||
const SvgIcChevronLeft = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 21 21" | ||
{...props} | ||
> | ||
<path | ||
stroke="#222" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="m13 15.5-5-5 5-5" | ||
/> | ||
</svg> | ||
); | ||
export default SvgIcChevronLeft; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import * as React from "react"; | ||
import type { SVGProps } from "react"; | ||
const SvgIcChevronRight = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 29 29" | ||
{...props} | ||
> | ||
<path | ||
stroke="#222" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="m11 21.5 7-7-7-7" | ||
/> | ||
</svg> | ||
); | ||
export default SvgIcChevronRight; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import * as React from "react"; | ||
import type { SVGProps } from "react"; | ||
const SvgIcPlus = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 21 21" | ||
{...props} | ||
> | ||
<path | ||
stroke="#BEBEBE" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
d="M10.5 4.667v11.666M4.667 10.5h11.667" | ||
/> | ||
</svg> | ||
); | ||
export default SvgIcPlus; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import * as React from "react"; | ||
import type { SVGProps } from "react"; | ||
const SvgIcSettings = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 21 21" | ||
{...props} | ||
> | ||
<g | ||
stroke="#222" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth={1.5} | ||
> | ||
<path d="M10.5 13a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5" /> | ||
<path d="M16.106 12.773a1.25 1.25 0 0 0 .25 1.379l.046.045a1.516 1.516 0 1 1-2.144 2.144l-.045-.046a1.25 1.25 0 0 0-1.38-.25 1.25 1.25 0 0 0-.757 1.144v.13a1.515 1.515 0 1 1-3.03 0v-.069a1.25 1.25 0 0 0-.818-1.144 1.25 1.25 0 0 0-1.38.25l-.045.046a1.516 1.516 0 1 1-2.144-2.144l.046-.046a1.25 1.25 0 0 0 .25-1.379 1.25 1.25 0 0 0-1.144-.757h-.129a1.515 1.515 0 1 1 0-3.03h.068a1.25 1.25 0 0 0 1.144-.819 1.25 1.25 0 0 0-.25-1.378L4.6 6.803A1.515 1.515 0 1 1 6.743 4.66l.045.046a1.25 1.25 0 0 0 1.379.25h.06a1.25 1.25 0 0 0 .758-1.144v-.13a1.515 1.515 0 1 1 3.03 0v.07a1.25 1.25 0 0 0 .758 1.143 1.25 1.25 0 0 0 1.379-.25l.045-.045a1.517 1.517 0 1 1 2.144 2.144l-.045.045a1.25 1.25 0 0 0-.25 1.379v.06a1.25 1.25 0 0 0 1.144.758h.129a1.515 1.515 0 1 1 0 3.03h-.069a1.25 1.25 0 0 0-1.144.758" /> | ||
</g> | ||
</svg> | ||
); | ||
export default SvgIcSettings; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
export { default as IcNormal } from "./IcNormal"; | ||
export { default as Check } from "./Check"; | ||
export { default as IcBottomSheetLine } from "./IcBottomSheetLine"; | ||
export { default as IcEllipse57 } from "./IcEllipse57"; | ||
export { default as IcNormal } from "./IcNormal"; | ||
export { default as IcShape } from "./IcShape"; | ||
export { default as IcChevronLeft } from "./IcChevronLeft"; | ||
export { default as IcChevronRight } from "./IcChevronRight"; | ||
export { default as IcClear } from "./IcClear"; | ||
export { default as IcDelete } from "./IcDelete"; | ||
export { default as IcLogo } from "./IcLogo"; | ||
export { default as IcEllipses } from "./IcEllipses"; | ||
export { default as IcLeftarrow } from "./IcLeftarrow"; | ||
export { default as IcLogo } from "./IcLogo"; | ||
export { default as IcMessage } from "./IcMessage"; | ||
export { default as IcPlus } from "./IcPlus"; | ||
export { default as IcSearch } from "./IcSearch"; | ||
export { default as IcSearchFillter } from "./IcSearchFillter"; | ||
export { default as IcSearchFillterBlue } from "./IcSearchFillterBlue"; | ||
|
||
export { default as Check } from "./Check"; | ||
export { default as IcUp } from "./IcUp"; | ||
export { default as IcSettings } from "./IcSettings"; | ||
export { default as IcTest } from "./IcTest"; | ||
export { default as IcToastError } from "./IcToastError"; | ||
export { default as IcUp } from "./IcUp"; | ||
export { default as IcoMessage } from "./IcoMessage"; | ||
export { default as IcoSkeleton } from "./IcoSkeleton"; | ||
export { default as Plus } from "./Plus"; | ||
export { default as IcToastError } from "./IcToastError"; | ||
export { default as React } from "./React"; | ||
export { default as Vite } from "./Vite"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
//μ¬μ©μ μ‘°ν api get μμ | ||
interface UserProfilePropTypes { | ||
nickname: string; | ||
profileImage: string; | ||
} | ||
|
||
export const USER_PROFILE: UserProfilePropTypes = { | ||
nickname: "콩콩", | ||
profileImage: | ||
"https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2F3v1Ml%2FbtsLIeLDyWf%2FTXKkhRXKirJsqdHNoK9A5K%2Fimg.jpg", | ||
}; | ||
|
||
//λ°λ € λλ¬Ό μ‘°ν api get μμ | ||
|
||
interface Disease { | ||
id: number; | ||
name: string; | ||
} | ||
|
||
interface Symptom { | ||
id: number; | ||
name: string; | ||
} | ||
|
||
interface PetProfilePropTypes { | ||
petId: number; | ||
petImage: string; | ||
petName: string; | ||
petAge: number; | ||
petGender: "M" | "F"; | ||
breedId: number; | ||
breed: string; | ||
animalId: number; | ||
animal: string; | ||
diseases: Disease[]; | ||
symptoms: Symptom[]; | ||
} | ||
|
||
export const PET_PROFILE: PetProfilePropTypes = { | ||
petId: 1, | ||
petImage: "url", | ||
petName: "ν«μ΄λ¦", | ||
petAge: 16, | ||
petGender: "F", | ||
breedId: 1, | ||
breed: "ν¬λ©λΌλμ", | ||
animalId: 1, | ||
animal: "κ°μμ§", | ||
diseases: [ | ||
{ id: 1, name: "μ§λ³1" }, | ||
{ id: 2, name: "μ§λ³2" }, | ||
{ id: 3, name: "μ§λ³3" }, | ||
], | ||
symptoms: [ | ||
{ id: 1, name: "μ¦μ1" }, | ||
{ id: 2, name: "μ¦μ2" }, | ||
], | ||
}; |
Oops, something went wrong.