UNPKG

@pdfme/ui

Version:

TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!

16 lines (15 loc) 421 B
import React from 'react'; export interface ColorWidgetProps { value?: string; onChange?: (value: string | undefined) => void; schema?: { format?: string; }; disabled?: boolean; disabledAlpha?: boolean; readOnly?: boolean; className?: string; style?: React.CSSProperties; } declare const ColorWidget: (props: ColorWidgetProps) => React.JSX.Element; export default ColorWidget;