UNPKG

@papernote/ui

Version:

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

31 lines 995 B
import type { ReactNode } from 'react'; export interface ComingSoonProps { title: string; description: string; icon?: ReactNode; features?: string[]; estimatedDate?: string; } /** * Coming Soon placeholder component for pages under development * * Provides a professional placeholder for features that are planned but not yet implemented. * Shows feature highlights, estimated release dates, and contact information. * * @example * ```tsx * <ComingSoon * title="Sales Pipeline" * description="Kanban-style pipeline for tracking opportunities" * icon={<TrendingUp className="h-8 w-8" />} * features={[ * 'Drag-and-drop stage transitions', * 'Weighted forecast calculations', * 'Win/loss analytics' * ]} * estimatedDate="Q2 2026" * /> * ``` */ export declare function ComingSoon({ title, description, icon, features, estimatedDate }: ComingSoonProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ComingSoon.d.ts.map