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-12-05 04:06:54 +00:00
|
|
|
import {
|
|
|
|
Breanna,
|
|
|
|
BreannaFront,
|
|
|
|
BreannaBack,
|
|
|
|
} from 'shared/components/designs/linedrawings/breanna.mjs'
|
|
|
|
import { Brian, BrianFront, BrianBack } from 'shared/components/designs/linedrawings/brian.mjs'
|
2023-09-24 19:07:16 +02:00
|
|
|
import { Bruce, BruceFront, BruceBack } from 'shared/components/designs/linedrawings/bruce.mjs'
|
2023-12-05 04:06:54 +00:00
|
|
|
import { Hortensia, HortensiaFront } from 'shared/components/designs/linedrawings/hortensia.mjs'
|
2023-09-24 19:07:16 +02:00
|
|
|
import { Simon, SimonFront, SimonBack } from 'shared/components/designs/linedrawings/simon.mjs'
|
|
|
|
import { Wahid, WahidFront, WahidBack } from 'shared/components/designs/linedrawings/wahid.mjs'
|
2023-12-09 19:37:02 +00:00
|
|
|
import { Bee, BeeFront } from 'shared/components/designs/linedrawings/bee.mjs'
|
2023-09-24 19:07:16 +02:00
|
|
|
|
|
|
|
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-12-05 04:06:54 +00:00
|
|
|
breanna: BreannaFront,
|
|
|
|
brian: BrianFront,
|
2023-09-24 19:07:16 +02:00
|
|
|
bruce: BruceFront,
|
2023-12-05 04:06:54 +00:00
|
|
|
hortensia: HortensiaFront,
|
2023-09-24 19:07:16 +02:00
|
|
|
simon: SimonFront,
|
|
|
|
wahid: WahidFront,
|
2023-12-09 19:37:02 +00:00
|
|
|
bee: BeeFront,
|
2023-09-24 19:07:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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-12-05 04:06:54 +00:00
|
|
|
breanna: BreannaBack,
|
|
|
|
brian: BrianBack,
|
2023-09-24 19:07:16 +02:00
|
|
|
bruce: BruceBack,
|
|
|
|
simon: SimonBack,
|
|
|
|
wahid: WahidBack,
|
2023-12-09 19:37:02 +00:00
|
|
|
bee: Bee,
|
2023-09-24 19:07:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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-12-05 04:06:54 +00:00
|
|
|
breanna: Breanna,
|
|
|
|
brian: Brian,
|
2023-09-24 19:07:16 +02:00
|
|
|
bruce: Bruce,
|
2023-12-05 04:06:54 +00:00
|
|
|
hortensia: Hortensia,
|
2023-09-24 19:07:16 +02:00
|
|
|
simon: Simon,
|
|
|
|
wahid: Wahid,
|
|
|
|
}
|