@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
14 lines (13 loc) • 356 B
TypeScript
/// <reference types="react" />
/** @internal */
export interface IColorTextProps {
children?: React.ReactNode;
color?: string;
background?: string;
onClick?: () => void;
}
/** @internal */
export declare const ColorText:
import("styled-components").StyledComponent<"div", any, {
className: string;
} & IColorTextProps, "className">;