UNPKG

@excalidraw/excalidraw

Version:
12 lines (11 loc) 296 B
/// <reference types="react" /> import "./TextInput.scss"; import "./ProjectName.scss"; declare type Props = { value: string; onChange: (value: string) => void; label: string; isNameEditable: boolean; }; export declare const ProjectName: (props: Props) => JSX.Element; export {};