indicator.ts

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