25 lines
587 B
JavaScript
25 lines
587 B
JavaScript
|
import { commonDark } from "../../_styles/common/index.mjs";
|
||
|
import { popoverDark } from "../../popover/styles/index.mjs";
|
||
|
import commonVars from "./_common.mjs";
|
||
|
const tooltipDark = {
|
||
|
name: 'Tooltip',
|
||
|
common: commonDark,
|
||
|
peers: {
|
||
|
Popover: popoverDark
|
||
|
},
|
||
|
self(vars) {
|
||
|
const {
|
||
|
borderRadius,
|
||
|
boxShadow2,
|
||
|
popoverColor,
|
||
|
textColor2
|
||
|
} = vars;
|
||
|
return Object.assign(Object.assign({}, commonVars), {
|
||
|
borderRadius,
|
||
|
boxShadow: boxShadow2,
|
||
|
color: popoverColor,
|
||
|
textColor: textColor2
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
export default tooltipDark;
|