@chief-editor/brick-control
Version:
Control Brick for chief editor
10 lines (9 loc) • 414 B
TypeScript
/// <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;