Interface WorkbookTitleProps

interface WorkbookTitleProps {
    hidden?: boolean;
    onTitleChange?: ((newTitle) => void);
    placeHolder?: string;
    readOnly?: boolean;
    sx?: SxProps<Theme>;
    title?: string;
    workbook?: WorkbookElement;
}

Hierarchy

  • HTMLAttributes<HTMLDivElement>
    • WorkbookTitleProps

Properties

hidden?: boolean

Default Value

false
onTitleChange?: ((newTitle) => void)

Type declaration

    • (newTitle): void
    • Parameters

      • newTitle: string

      Returns void

placeHolder?: string
readOnly?: boolean

Default Value

false
sx?: SxProps<Theme>

MUI SX props

title?: string
workbook?: WorkbookElement