Skip to content

Commit

Permalink
fix: interface, props ์ž‘์„ฑ
Browse files Browse the repository at this point in the history
  • Loading branch information
Leeyoonji23 committed Jan 13, 2025
1 parent 36d2386 commit 5d6a0e3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/common/component/BottomSheet/BottomSheet.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import IcBottomSheetLine from "@asset/svg/IcBottomSheetLine";
import * as styles from "./BottomSheet.css";
import { Button } from "../Button";
import React from "react";

const BottomSheet = () => {
interface BottomSheetProps {
leftClick?: React.MouseEventHandler<HTMLButtonElement>;
rightClick?: React.MouseEventHandler<HTMLButtonElement>;
}

const BottomSheet = ({ leftClick, rightClick }: BottomSheetProps) => {
return (
<div className={styles.bottomSheetContainer}>
<div className={styles.bottomSheetHeader}>
Expand All @@ -16,13 +22,15 @@ const BottomSheet = () => {
size="large"
variant="solidNeutral"
disabled={false}
onClick={leftClick}
/>

<Button
label="์‚ญ์ œํ• ๊ฒŒ์š”"
size="large"
variant="solidPrimary"
disabled={false}
onClick={rightClick}
/>
</div>
</div>
Expand Down

0 comments on commit 5d6a0e3

Please sign in to comment.