budget-go/frontend/js/lib/chartStyle.js
2025-03-25 23:02:31 +01:00

8 lines
119 B
JavaScript

const chartStyle = (height) => {
return {
width: '100%',
height: `${height}px`,
}
}
export { chartStyle }