UNPKG

@chief-editor/brick-control

Version:

Control Brick for chief editor

10 lines (9 loc) 414 B
/// <reference types="react" /> import { ISizeValue, SizeProps } from './type'; export interface ISizeComponentProps { value: ISizeValue; onValueChange: (value: ISizeValue) => void; defaultUniformScale?: boolean; } export declare const SizeComponent: ({ value, onValueChange, defaultUniformScale }: ISizeComponentProps) => JSX.Element; export declare function SizeBrick(props: SizeProps): JSX.Element;