You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
514 B
18 lines
514 B
|
4 months ago
|
import { RectStyleProps } from '../../shapes';
|
||
|
|
export declare const LABEL_TEXT_STYLE: import("../../core").PrefixStyleProps<{
|
||
|
|
readonly fill: "rgba(0,0,0,0.45)";
|
||
|
|
readonly fontSize: 10;
|
||
|
|
readonly textAlign: "start";
|
||
|
|
readonly textBaseline: "middle";
|
||
|
|
readonly overflow: "clip";
|
||
|
|
}, "label">;
|
||
|
|
export declare const CHECKBOX_RECT_STYLE: {
|
||
|
|
default: RectStyleProps;
|
||
|
|
selected: RectStyleProps;
|
||
|
|
};
|
||
|
|
export declare const CHECKED_SHAPE_STYLE: {
|
||
|
|
d: any;
|
||
|
|
lineWidth: number;
|
||
|
|
cursor: string;
|
||
|
|
};
|