react-layout-timbel
Version:
모던한 React 컴포넌트 라이브러리입니다. Layout, Card, Button 컴포넌트를 포함합니다.
25 lines • 530 B
TypeScript
import React from 'react';
export interface LayoutProps {
/**
* 헤더 제목
*/
headerTitle?: string;
/**
* 사이드바 너비
*/
sidebarWidth?: string;
/**
* 메인 콘텐츠 내용
*/
children?: React.ReactNode;
/**
* 사이드바 메뉴 아이템들
*/
sidebarItems?: string[];
/**
* 레이아웃 테마 (light/dark)
*/
theme?: 'light' | 'dark';
}
export declare const Layout: React.FC<LayoutProps>;
//# sourceMappingURL=index.d.ts.map