mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 11:08:45 +08:00
9dc33bda54
* fix: set default value for style * Update components/tooltip/util.ts Co-authored-by: afc163 <afc163@gmail.com> Co-authored-by: afc163 <afc163@gmail.com>
25 lines
750 B
TypeScript
25 lines
750 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
|
|
import type * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import { PresetColorTypes } from '../_util/colors';
|
|
|
|
const PresetColorRegex = new RegExp(`^(${PresetColorTypes.join('|')})(-inverse)?$`);
|
|
|
|
export function parseColor(prefixCls: string, color?: string) {
|
|
const className = classNames({
|
|
[`${prefixCls}-${color}`]: color && PresetColorRegex.test(color),
|
|
});
|
|
|
|
const overlayStyle: React.CSSProperties = {};
|
|
const arrowStyle: React.CSSProperties = {};
|
|
|
|
if (color && !PresetColorRegex.test(color)) {
|
|
overlayStyle.background = color;
|
|
// @ts-ignore
|
|
arrowStyle['--antd-arrow-background-color'] = color;
|
|
}
|
|
|
|
return { className, overlayStyle, arrowStyle };
|
|
}
|