diff --git a/src/common/component/BottomSheet/BottomSheet.tsx b/src/common/component/BottomSheet/BottomSheet.tsx index 5e0ed1dd..6b7fe586 100644 --- a/src/common/component/BottomSheet/BottomSheet.tsx +++ b/src/common/component/BottomSheet/BottomSheet.tsx @@ -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; + rightClick?: React.MouseEventHandler; +} + +const BottomSheet = ({ leftClick, rightClick }: BottomSheetProps) => { return (
@@ -16,6 +22,7 @@ const BottomSheet = () => { size="large" variant="solidNeutral" disabled={false} + onClick={leftClick} />