UNPKG

@yeji0214/modal

Version:

모달 컴포넌트

8 lines (7 loc) 251 B
export type ModalButtonProps = { text: string; onClick: () => void; variant?: "confirm" | "cancel"; }; declare const Button: ({ text, onClick, variant }: ModalButtonProps) => import("react/jsx-runtime").JSX.Element; export default Button;