UNPKG

@antv/g6

Version:

A Graph Visualization Framework in JavaScript

12 lines (11 loc) 543 B
import type { IconStyleProps } from '../elements/shapes'; import type { Size } from '../types'; /** * <zh/> 如果没有手动指定图标大小,则根据主图形尺寸自动推断 * * <en/> Infer the icon size according to key size if icon size is not manually specified * @param size - <zh/> 主图形尺寸 | <en/> Key size * @param iconStyle - <zh/> 图标样式 | <en/> Icon style * @returns <zh/> 图标样式 | <en/> Icon style */ export declare function inferIconStyle(size: Size, iconStyle: IconStyleProps): IconStyleProps;