contactsPopover.ts

 1import Theme from "../themes/common/theme";
 2import { backgroundColor, border, popoverShadow } from "./components";
 3
 4export default function contactsPopover(theme: Theme) {
 5  return {
 6    background: backgroundColor(theme, 300, "base"),
 7    cornerRadius: 6,
 8    padding: { top: 6 },
 9    margin: { top: -6 },
10    shadow: popoverShadow(theme),
11    border: border(theme, "primary"),
12    width: 300,
13    height: 400,
14  }
15}