react-layout-timbel
Version:
모던한 React 컴포넌트 라이브러리입니다. Layout, Card, Button 컴포넌트를 포함합니다.
25 lines • 597 B
TypeScript
import React from 'react';
export interface ModalProps {
/**
* Modal 컴포넌트의 제목
*/
title?: string;
/**
* Modal 컴포넌트의 내용
*/
children?: React.ReactNode;
/**
* Modal 컴포넌트의 테마 (light/dark)
*/
theme?: 'light' | 'dark';
/**
* Modal 컴포넌트의 크기 (small/medium/large)
*/
size?: 'small' | 'medium' | 'large';
/**
* Modal 컴포넌트의 클릭 핸들러
*/
onClick?: () => void;
}
export declare const Modal: React.FC<ModalProps>;
//# sourceMappingURL=index.d.ts.map