2022-09-05 12:24:23 -07:00
|
|
|
import { Design } from '@freesewing/core'
|
|
|
|
import { data } from '../data.mjs'
|
2019-04-07 17:01:58 +02:00
|
|
|
// Parts
|
2022-09-05 12:24:23 -07:00
|
|
|
import { top } from './top.mjs'
|
|
|
|
import { side } from './side.mjs'
|
|
|
|
import { brimBottom } from './brimbottom.mjs'
|
|
|
|
import { brimTop } from './brimtop.mjs'
|
|
|
|
import { brimInterfacing } from './briminterfacing.mjs'
|
2019-04-07 17:01:58 +02:00
|
|
|
|
|
|
|
// Create new design
|
2022-09-05 12:24:23 -07:00
|
|
|
const Florent = new Design({
|
|
|
|
data,
|
|
|
|
parts: [
|
|
|
|
top, side, brimBottom, brimTop, brimInterfacing,
|
|
|
|
]
|
|
|
|
})
|
2019-04-07 17:01:58 +02:00
|
|
|
|
2022-06-14 13:09:09 +02:00
|
|
|
// Named exports
|
2022-09-05 12:24:23 -07:00
|
|
|
export {
|
|
|
|
top, side, brimBottom, brimTop, brimInterfacing,
|
|
|
|
Florent,
|
|
|
|
}
|