UNPKG

@kwiz/fluentui

Version:

KWIZ common controls for FluentUI

20 lines (19 loc) 561 B
import * as React from "react"; export interface iProps { label?: string; value: string; onChange: (newValue: string) => void; required?: boolean; showValidationErrors?: boolean; underlined?: boolean; width?: number; buttonOnly?: boolean; placeholder?: string; disabled?: boolean; /** specify a specific mount node for this dialog */ mountNode?: HTMLElement | null | { element?: HTMLElement | null; className?: string; }; } export declare const ColorPickerEx: React.FunctionComponent<iProps>;