react-together-primereact
Version:
A set of ready-to-use PrimeReact components that are synchronized across multiple users in real-time!
8 lines (6 loc) • 358 B
TypeScript
import { ColorPickerProps } from 'primereact/colorpicker';
export interface ColorPickerTogetherProps extends Omit<ColorPickerProps, 'value'> {
rtKey: string;
publishWhileOpen?: boolean;
}
export default function ColorPickerTogether({ rtKey, publishWhileOpen, onChange, ...props }: ColorPickerTogetherProps): import("react/jsx-runtime").JSX.Element;