/**
 * 圆角
 * string 百分百格式
 */
export type BorderRadius = {
    topLeft?: number | string;
    topRight?: number | string;
    bottomRight?: number | string;
    bottomLeft?: number | string;
};
