UNPKG

@knapsack/app

Version:

Build Design Systems on top of knapsack, by Basalt

39 lines (37 loc) 1.3 kB
/** * Copyright (C) 2018 Basalt This file is part of Knapsack. Knapsack is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. Knapsack is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Knapsack; if not, see <https://www.gnu.org/licenses>. */ import React from 'react'; import './template-view.scss'; import './shared/demo-grid-controls.scss'; export declare type Props = { /** * Pattern ID */ id: string; templateId: string; demoId?: string; isVerbose?: boolean; /** * @todo remove `string` - it's just to make Typescript happy */ demoSize?: 's' | 'm' | 'l' | 'full' | string; isReadmeShown?: boolean; isTitleShown?: boolean; isSchemaFormShown?: boolean; isCodeBlockShown?: boolean; }; declare const TemplateView: React.FC<Props>; export default TemplateView; //# sourceMappingURL=template-view.d.ts.map