UNPKG

@papernote/ui

Version:

A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive

21 lines 783 B
import React from 'react'; export interface TwoColumnContentProps { /** Content for the left sidebar column */ sidebar: React.ReactNode; /** Content for the main content column */ children: React.ReactNode; /** Custom className for the container */ className?: string; } /** * Two-column content layout component that provides: * - Sidebar column on the left (takes 1/3 of width) * - Main content column on the right (takes 2/3 of width) * - Responsive gap between columns * - Vertical stacking of content within each column * * This component uses a 6-column grid internally for precise control. */ export declare const TwoColumnContent: React.FC<TwoColumnContentProps>; export default TwoColumnContent; //# sourceMappingURL=TwoColumnContent.d.ts.map