@knapsack/app
Version:
Build Design Systems on top of knapsack, by Basalt
22 lines • 659 B
TypeScript
import React from 'react';
import './page-header.scss';
declare type Props = {
section?: string;
title?: string;
handleEditTitle?: (text: string) => void;
description?: string;
handleEditDescription?: (text: string) => void;
/**
* If the header content should be generally constrained to the
* max line length of page text. Primarily for non pappern pages.
*/
constrained?: boolean;
/**
* Flush the default --space-xl padding. Also strips the default
* border-bottom.
*/
flush?: boolean;
};
export declare const PageHeader: React.FC<Props>;
export {};
//# sourceMappingURL=page-header.d.ts.map