1
0
Fork 0
freesewing/sites/shared/components/designs/linedrawings/index.mjs
2024-01-16 22:03:09 -08:00

84 lines
2.7 KiB
JavaScript

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'
import {
Breanna,
BreannaFront,
BreannaBack,
} from 'shared/components/designs/linedrawings/breanna.mjs'
import { Brian, BrianFront, BrianBack } from 'shared/components/designs/linedrawings/brian.mjs'
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'
import { Lucy, LucyFront } from 'shared/components/designs/linedrawings/lucy.mjs'
import { Noble, NobleFront, NobleBack } from 'shared/components/designs/linedrawings/noble.mjs'
import { Hortensia, HortensiaFront } from 'shared/components/designs/linedrawings/hortensia.mjs'
import { Simon, SimonFront, SimonBack } from 'shared/components/designs/linedrawings/simon.mjs'
import { Uma, UmaFront, UmaBack } from 'shared/components/designs/linedrawings/uma.mjs'
import { Wahid, WahidFront, WahidBack } from 'shared/components/designs/linedrawings/wahid.mjs'
import {
Tristan,
TristanFront,
TristanBack,
} from 'shared/components/designs/linedrawings/tristan.mjs'
export const lineDrawingsFront = {
aaron: AaronFront,
albert: AlbertFront,
bella: BellaFront,
benjamin: BenjaminFront,
bent: BentFront,
bob: BobFront,
breanna: BreannaFront,
brian: BrianFront,
bruce: BruceFront,
diana: DianaFront,
florence: FlorenceFront,
lucy: LucyFront,
noble: NobleFront,
hortensia: HortensiaFront,
simon: SimonFront,
uma: UmaFront,
wahid: WahidFront,
tristan: TristanFront,
}
export const lineDrawingsBack = {
aaron: AaronBack,
bella: BellaBack,
bent: BentBack,
bob: BobBack,
breanna: BreannaBack,
brian: BrianBack,
bruce: BruceBack,
diana: DianaBack,
noble: NobleBack,
simon: SimonBack,
uma: UmaBack,
wahid: WahidBack,
tristan: TristanBack,
}
export const lineDrawings = {
aaron: Aaron,
albert: Albert,
bella: Bella,
benjamin: Benjamin,
bent: Bent,
bob: Bob,
breanna: Breanna,
brian: Brian,
bruce: Bruce,
diana: Diana,
florence: Florence,
lucy: Lucy,
noble: Noble,
hortensia: Hortensia,
simon: Simon,
uma: Uma,
wahid: Wahid,
tristan: Tristan,
}