Skip to content

Commit

Permalink
fix: 공유 기능 수정 중 표시
Browse files Browse the repository at this point in the history
  • Loading branch information
djk01281 committed Dec 1, 2024
1 parent a85b1e5 commit 9a95a88
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions apps/frontend/src/features/workspace/ui/ShareTool/SharePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,20 @@ export function SharePanel() {

return (
<div className="w-full">
<div className="flex w-full items-center gap-2 p-1">
<div className="flex-row text-sm text-slate-400">공개 범위</div>
<div className="flex items-center space-x-2">
<Switch
checked={isPublic}
onChange={setIsPublic}
CheckedIcon={Globe2}
UncheckedIcon={Lock}
/>
<div className="flex w-full flex-row justify-between p-1">
<div className="flex flex-row items-center gap-2">
<div className="flex-row text-sm text-slate-400">공개 범위</div>
<div className="flex items-center space-x-2">
<Switch
checked={isPublic}
onChange={setIsPublic}
CheckedIcon={Globe2}
UncheckedIcon={Lock}
/>
</div>
</div>
<div className="select-none flex-row text-sm text-slate-400">
🚧 수정 중입니다.
</div>
</div>
<div
Expand Down

0 comments on commit 9a95a88

Please sign in to comment.