1
0
Fork 0
freesewing/sites/shared/components/designs/linedrawings/index.mjs

55 lines
1.8 KiB
JavaScript
Raw Normal View History

2023-09-24 19:07:16 +02:00
import { Aaron, AaronFront, AaronBack } from 'shared/components/designs/linedrawings/aaron.mjs'
import { Albert, AlbertFront } from 'shared/components/designs/linedrawings/albert.mjs'
import { Bella, BellaFront, BellaBack } from 'shared/components/designs/linedrawings/bella.mjs'
import { Benjamin, BenjaminFront } from 'shared/components/designs/linedrawings/benjamin.mjs'
import { Bent, BentFront, BentBack } from 'shared/components/designs/linedrawings/bent.mjs'
import { Bob, BobFront, BobBack } from 'shared/components/designs/linedrawings/bob.mjs'
2023-09-24 19:07:16 +02:00
import { Bruce, BruceFront, BruceBack } from 'shared/components/designs/linedrawings/bruce.mjs'
import { Diana, DianaFront, DianaBack } from 'shared/components/designs/linedrawings/diana.mjs'
import { Florence, FlorenceFront } from 'shared/components/designs/linedrawings/florence.mjs'
2023-09-24 19:07:16 +02:00
import { Simon, SimonFront, SimonBack } from 'shared/components/designs/linedrawings/simon.mjs'
import { Uma, UmaFront, UmaBack } from 'shared/components/designs/linedrawings/uma.mjs'
2023-09-24 19:07:16 +02:00
import { Wahid, WahidFront, WahidBack } from 'shared/components/designs/linedrawings/wahid.mjs'
export const lineDrawingsFront = {
aaron: AaronFront,
albert: AlbertFront,
bella: BellaFront,
benjamin: BenjaminFront,
bent: BentFront,
bob: BobFront,
2023-09-24 19:07:16 +02:00
bruce: BruceFront,
diana: DianaFront,
florence: FlorenceFront,
2023-09-24 19:07:16 +02:00
simon: SimonFront,
uma: UmaFront,
2023-09-24 19:07:16 +02:00
wahid: WahidFront,
}
export const lineDrawingsBack = {
aaron: AaronBack,
bella: BellaBack,
bent: BentBack,
bob: BobBack,
2023-09-24 19:07:16 +02:00
bruce: BruceBack,
diana: DianaBack,
2023-09-24 19:07:16 +02:00
simon: SimonBack,
uma: UmaBack,
2023-09-24 19:07:16 +02:00
wahid: WahidBack,
}
export const lineDrawings = {
aaron: Aaron,
albert: Albert,
bella: Bella,
benjamin: Benjamin,
bent: Bent,
bob: Bob,
2023-09-24 19:07:16 +02:00
bruce: Bruce,
diana: Diana,
florence: Florence,
2023-09-24 19:07:16 +02:00
simon: Simon,
uma: Uma,
2023-09-24 19:07:16 +02:00
wahid: Wahid,
}