UNPKG

@chamn/engine

Version:
11 lines (10 loc) 418 B
import { InputCommonRef } from '../type'; type Value = Record<string, string>; export type MarginAndPaddingInputProps = { value?: Value; initialValue?: Value; onChange?: (newVal: Value) => void; prefix: 'margin' | 'padding'; }; export declare const MarginAndPaddingInput: import('react').ForwardRefExoticComponent<MarginAndPaddingInputProps & import('react').RefAttributes<InputCommonRef>>; export {};