IColorPalletProps

interface IColorPalletProps {
    color: string,
    onChange: (color: string) => void,
    onCancel: () => void
}

Usage

import {IColorPalletProps} from 'uxp/components';

Last updated