import { aardvark } from './aardvark' import { antelope } from './antelope' import { bat } from './bat' import { bird } from './bird' import { bulldog } from './bulldog' import { bunny } from './bunny' import { cat } from './cat' import { cow } from './cow' import { crocodile } from './crocodile' import { deer } from './deer' import { donkey } from './donkey' import { elephant } from './elephant' import { frog } from './frog' import { hangingMonkey } from './hanging-monkey' import { happyDog } from './happy-dog' import { horse } from './horse' import { lamb } from './lamb' import { lion } from './lion' import { moose } from './moose' import { parrot } from './parrot' import { pig } from './pig' import { possum } from './possum' import { prayingMonkey } from './praying-monkey' import { snail } from './snail' import { snake } from './snake' import { teddyBear } from './teddy-bear' import { turtle } from './turtle' import { worm } from './worm' const animals = { aardvark, antelope, bat, bird, bulldog, bunny, cat, cow, crocodile, deer, donkey, elephant, frog, hangingMonkey, happyDog, horse, lamb, lion, moose, parrot, pig, possum, prayingMonkey, snail, snake, teddyBear, turtle, worm, } as const export default animals