import {svg} from 'lit'; import {TickmarkStyle, tickmarkColor} from '../watch/tickmark'; export function singleSidedTickmark( height: number, value: number, style: TickmarkStyle ) { if (value >= 100) { return null; } const color = tickmarkColor(style); const y = (-value * height) / 100 - 2; return svg``; }