diff --git a/src/app/design-system/page.tsx b/src/app/design-system/page.tsx index 088bc33..424fea0 100644 --- a/src/app/design-system/page.tsx +++ b/src/app/design-system/page.tsx @@ -11,6 +11,7 @@ import ChatInput from '@/shared/components/InputBox/ChatInput'; import SelectBox from '@/shared/components/InputBox/SelectBox'; import LikeBtn from '@/shared/components/like/LikeBtn'; import Share from '@/shared/components/share/Share'; +import Keep from '@/shared/components/keep/Keep'; function Page() { const [isModalOpen, setModalOpen] = useState(false); @@ -148,6 +149,10 @@ function Page() { +
+

keep

+ +
); diff --git a/src/shared/assets/icons/keep_36.svg b/src/shared/assets/icons/keep_36.svg index 363fdcb..a24cacc 100644 --- a/src/shared/assets/icons/keep_36.svg +++ b/src/shared/assets/icons/keep_36.svg @@ -1,4 +1,4 @@ - + @@ -10,7 +10,6 @@ - diff --git a/src/shared/assets/icons/keep_active_36.svg b/src/shared/assets/icons/keep_active_36.svg index 6c54f4c..1045102 100644 --- a/src/shared/assets/icons/keep_active_36.svg +++ b/src/shared/assets/icons/keep_active_36.svg @@ -1,4 +1,4 @@ - + @@ -11,7 +11,6 @@ - diff --git a/src/shared/components/keep/Keep.tsx b/src/shared/components/keep/Keep.tsx new file mode 100644 index 0000000..2e9f49d --- /dev/null +++ b/src/shared/components/keep/Keep.tsx @@ -0,0 +1,35 @@ +import KeepIcon from '@/shared/assets/icons/keep_36.svg'; +import KeepIconActive from '@/shared/assets/icons/keep_active_36.svg'; + +import { useState } from 'react'; +function Keep() { + const [isClick, setIsClick] = useState(false); + const handleClick = () => { + setIsClick(!isClick); + }; + + return ( + + ); +} +export default Keep;