contacts_popover.ts
1import { useTheme } from "../theme"
2import { background, border } from "./components"
3
4export default function contacts_popover(): any {
5 const theme = useTheme()
6
7 return {
8 background: background(theme.middle),
9 corner_radius: 6,
10 padding: { top: 6, bottom: 6 },
11 shadow: theme.popover_shadow,
12 border: border(theme.middle),
13 width: 300,
14 height: 400,
15 }
16}