14 lines
393 B
JavaScript
14 lines
393 B
JavaScript
import { buttonDark } from "../../button/styles/index.mjs";
|
|
import { popoverDark } from "../../popover/styles/index.mjs";
|
|
import { commonDark } from "../../_styles/common/index.mjs";
|
|
import { self } from "./light.mjs";
|
|
const popconfirmDark = {
|
|
name: 'Popconfirm',
|
|
common: commonDark,
|
|
peers: {
|
|
Button: buttonDark,
|
|
Popover: popoverDark
|
|
},
|
|
self
|
|
};
|
|
export default popconfirmDark; |