mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-07-04 07:43:41 -07:00
20 lines
361 B
JavaScript
20 lines
361 B
JavaScript
export const CHART_SIZE = /** @type {const} */ ({
|
|
width: 640,
|
|
fallbackHeight: 220,
|
|
});
|
|
|
|
export const CHART_MARKER = /** @type {const} */ ({
|
|
fallbackWidth: 84,
|
|
height: 20,
|
|
edgeOverflow: 8,
|
|
});
|
|
|
|
export const CHART_POINT = /** @type {const} */ ({
|
|
radius: 4,
|
|
});
|
|
|
|
export const CHART_FRAME = /** @type {const} */ ({
|
|
topGap: 16,
|
|
bottomPadding: 8,
|
|
});
|