@papernote/ui
Version:
A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive
17 lines • 527 B
TypeScript
import React from 'react';
export interface ToolbarSection {
id: string;
title: string;
icon?: React.ReactNode;
content: React.ReactNode;
defaultExpanded?: boolean;
}
export interface ExpandableToolbarProps {
sections: ToolbarSection[];
className?: string;
defaultCollapsed?: boolean;
onCollapseChange?: (collapsed: boolean) => void;
}
export declare const ExpandableToolbar: React.FC<ExpandableToolbarProps>;
export default ExpandableToolbar;
//# sourceMappingURL=ExpandableToolbar.d.ts.map