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'
|
2023-11-20 21:16:24 +00:00
|
|
|
import { Bella, BellaFront, BellaBack } from 'shared/components/designs/linedrawings/bella.mjs'
|
2023-11-26 18:54:03 +00:00
|
|
|
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'
|
2023-12-06 02:47:37 +00:00
|
|
|
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'
|
2023-12-06 02:47:37 +00:00
|
|
|
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,
|
2023-11-20 21:16:24 +00:00
|
|
|
bella: BellaFront,
|
2023-11-26 18:54:03 +00:00
|
|
|
benjamin: BenjaminFront,
|
|
|
|
bent: BentFront,
|
|
|
|
bob: BobFront,
|
2023-09-24 19:07:16 +02:00
|
|
|
bruce: BruceFront,
|
2023-12-06 02:47:37 +00:00
|
|
|
diana: DianaFront,
|
|
|
|
florence: FlorenceFront,
|
2023-09-24 19:07:16 +02:00
|
|
|
simon: SimonFront,
|
2023-12-06 02:47:37 +00:00
|
|
|
uma: UmaFront,
|
2023-09-24 19:07:16 +02:00
|
|
|
wahid: WahidFront,
|
|
|
|
}
|
|
|
|
|
|
|
|
export const lineDrawingsBack = {
|
|
|
|
aaron: AaronBack,
|
2023-11-20 21:16:24 +00:00
|
|
|
bella: BellaBack,
|
2023-11-26 18:54:03 +00:00
|
|
|
bent: BentBack,
|
|
|
|
bob: BobBack,
|
2023-09-24 19:07:16 +02:00
|
|
|
bruce: BruceBack,
|
2023-12-06 02:47:37 +00:00
|
|
|
diana: DianaBack,
|
2023-09-24 19:07:16 +02:00
|
|
|
simon: SimonBack,
|
2023-12-06 02:47:37 +00:00
|
|
|
uma: UmaBack,
|
2023-09-24 19:07:16 +02:00
|
|
|
wahid: WahidBack,
|
|
|
|
}
|
|
|
|
|
|
|
|
export const lineDrawings = {
|
|
|
|
aaron: Aaron,
|
|
|
|
albert: Albert,
|
2023-11-20 21:16:24 +00:00
|
|
|
bella: Bella,
|
2023-11-26 18:54:03 +00:00
|
|
|
benjamin: Benjamin,
|
|
|
|
bent: Bent,
|
|
|
|
bob: Bob,
|
2023-09-24 19:07:16 +02:00
|
|
|
bruce: Bruce,
|
2023-12-06 02:47:37 +00:00
|
|
|
diana: Diana,
|
|
|
|
florence: Florence,
|
2023-09-24 19:07:16 +02:00
|
|
|
simon: Simon,
|
2023-12-06 02:47:37 +00:00
|
|
|
uma: Uma,
|
2023-09-24 19:07:16 +02:00
|
|
|
wahid: Wahid,
|
|
|
|
}
|