tandem-front-end
Version:
Visual editor for web components
23 lines (16 loc) • 511 B
TypeScript
import * as React from "react";
type TextProps = {
text?: string;
} & React.HTMLAttributes<any>;
type ElementProps = {
ref?: any;
} & React.HTMLAttributes<any>;
export type BaseEditorTabProps = {
variant?: string;
labelProps?: TextProps;
xButtonProps?: TextProps;
selectedProps?: ElementProps;
hoveringProps?: ElementProps;
} & ElementProps;
export type _fde5849e96847Props = BaseEditorTabProps;
export const EditorTab: (props: BaseEditorTabProps) => React.ReactElement<BaseEditorTabProps>;