UNPKG

@knapsack/app

Version:

Build Design Systems on top of knapsack, by Basalt

16 lines 373 B
import React from 'react'; import './add-entity.scss'; declare type Props = { /** * Give it a dark color scheme? */ isDark?: boolean; handleAdd: (values: MyFormValues) => void; }; interface MyFormValues { title: string; entityType?: string; } export declare const AddEntity: React.FC<Props>; export {}; //# sourceMappingURL=add-entity.d.ts.map