1
0
Fork 0
freesewing/packages/legend/src/linewidths.js

13 lines
224 B
JavaScript
Raw Normal View History

import { box, drawLine } from './shared'
import { lineWidths } from './styles'
export default (part) => {
let y = 10
for (const t of lineWidths) {
drawLine(part, y, t)
y += 15
}
return box(part, 120, 95)
}