Files
oak-gpui/styles/src/component/indicator.ts
T
2023-08-16 22:50:02 -04:00

10 lines
303 B
TypeScript

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