indicator.ts
1import { foreground } from "../style_tree/components"
2import { Layer, StyleSets } from "../theme"
3
4export const indicator = ({
5 layer,
6 color,
7}: {
8 layer: Layer
9 color: StyleSets
10}) => ({
11 corner_radius: 4,
12 padding: 4,
13 margin: { top: 12, left: 12 },
14 background: foreground(layer, color),
15})