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    shadow: popoverShadow(theme),
10    border: border(theme, "primary"),
11    width: 250,
12    height: 300,
13  }
14}