2022-09-05 12:24:23 -07:00
|
|
|
import { Design } from '@freesewing/core'
|
|
|
|
import { data } from '../data.mjs'
|
2023-07-02 13:31:49 +02:00
|
|
|
import { i18n } from '../i18n/index.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,
|
2022-09-11 14:28:25 +02:00
|
|
|
parts: [top, side, brimBottom, brimTop, brimInterfacing],
|
2022-09-05 12:24:23 -07:00
|
|
|
})
|
2019-04-07 17:01:58 +02:00
|
|
|
|
2022-06-14 13:09:09 +02:00
|
|
|
// Named exports
|
2023-07-02 13:31:49 +02:00
|
|
|
export { top, side, brimBottom, brimTop, brimInterfacing, Florent, i18n }
|