├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── screenshots └── screenshot.gif ├── src ├── components │ ├── Avatar.tsx │ ├── Base.tsx │ ├── accessories │ │ ├── FaceMask.tsx │ │ ├── HoopEarrings.tsx │ │ ├── RoundGlasses.tsx │ │ ├── Shades.tsx │ │ └── TinyGlasses.tsx │ ├── backgrounds │ │ ├── BgCircle.tsx │ │ ├── BgCircleMask.tsx │ │ ├── BgSquare.tsx │ │ ├── BgSquareMask.tsx │ │ ├── BgSquircle.tsx │ │ ├── BgSquircleMask.tsx │ │ └── types.ts │ ├── bodies │ │ ├── Breasts.tsx │ │ ├── Chest.tsx │ │ └── types.ts │ ├── clothing │ │ ├── ChequeredShirt.tsx │ │ ├── ChequeredShirtDark.tsx │ │ ├── DenimJacket.tsx │ │ ├── Dress.tsx │ │ ├── DressShirt.tsx │ │ ├── Hoodie.tsx │ │ ├── Shirt.tsx │ │ ├── TankTop.tsx │ │ ├── VNeck.tsx │ │ └── types.ts │ ├── clothingGraphic │ │ ├── Donut.tsx │ │ ├── Gatsby.tsx │ │ ├── GraphQL.tsx │ │ ├── Rainbow.tsx │ │ ├── React.tsx │ │ ├── Redwood.tsx │ │ └── Vue.tsx │ ├── eyebrows │ │ ├── AngryEyebrows.tsx │ │ ├── ConcernedEyebrows.tsx │ │ ├── LeftLoweredEyebrows.tsx │ │ ├── Normal.tsx │ │ └── SeriousEyebrows.tsx │ ├── eyes │ │ ├── ContentEyes.tsx │ │ ├── Crazy.tsx │ │ ├── Cute.tsx │ │ ├── Cyborg.tsx │ │ ├── DizzyEyes.tsx │ │ ├── Dollars.tsx │ │ ├── HappyEyes.tsx │ │ ├── HeartEyes.tsx │ │ ├── Lashes.tsx │ │ ├── LeftTwitchEyes.tsx │ │ ├── NormalEyes.tsx │ │ ├── PiratePatch.tsx │ │ ├── SimpleEyes.tsx │ │ ├── SimplePatch.tsx │ │ ├── SquintEyes.tsx │ │ ├── Stars.tsx │ │ ├── Wink.tsx │ │ └── types.ts │ ├── facialHair │ │ ├── Goatee.tsx │ │ ├── MediumBeard.tsx │ │ ├── Stubble.tsx │ │ └── types.ts │ ├── hair │ │ ├── Afro.tsx │ │ ├── BaldingHair.tsx │ │ ├── BobCut.tsx │ │ ├── BunHair.tsx │ │ ├── BuzzCut.tsx │ │ ├── LongHair.tsx │ │ ├── Mohawk.tsx │ │ ├── PixieCut.tsx │ │ ├── ShortHair.tsx │ │ └── types.ts │ ├── hats │ │ ├── Beanie.tsx │ │ ├── Hijab.tsx │ │ ├── Party.tsx │ │ ├── Turban.tsx │ │ └── types.ts │ └── mouths │ │ ├── Grin.tsx │ │ ├── Lips.tsx │ │ ├── OpenMouth.tsx │ │ ├── PiercedTongue.tsx │ │ ├── Sad.tsx │ │ ├── SeriousMouth.tsx │ │ ├── SmileOpen.tsx │ │ ├── Tongue.tsx │ │ ├── VomitingRainbow.tsx │ │ └── types.ts ├── index.tsx ├── theme.ts ├── themeContext.tsx └── utils │ └── Noop.tsx ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | .cache 5 | dist 6 | 7 | syncfiles.sh 8 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | screenshots 2 | .editorconfig 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/screenshots/screenshot.gif -------------------------------------------------------------------------------- /src/components/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/Avatar.tsx -------------------------------------------------------------------------------- /src/components/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/Base.tsx -------------------------------------------------------------------------------- /src/components/accessories/FaceMask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/accessories/FaceMask.tsx -------------------------------------------------------------------------------- /src/components/accessories/HoopEarrings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/accessories/HoopEarrings.tsx -------------------------------------------------------------------------------- /src/components/accessories/RoundGlasses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/accessories/RoundGlasses.tsx -------------------------------------------------------------------------------- /src/components/accessories/Shades.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/accessories/Shades.tsx -------------------------------------------------------------------------------- /src/components/accessories/TinyGlasses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/accessories/TinyGlasses.tsx -------------------------------------------------------------------------------- /src/components/backgrounds/BgCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/backgrounds/BgCircle.tsx -------------------------------------------------------------------------------- /src/components/backgrounds/BgCircleMask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/backgrounds/BgCircleMask.tsx -------------------------------------------------------------------------------- /src/components/backgrounds/BgSquare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/backgrounds/BgSquare.tsx -------------------------------------------------------------------------------- /src/components/backgrounds/BgSquareMask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/backgrounds/BgSquareMask.tsx -------------------------------------------------------------------------------- /src/components/backgrounds/BgSquircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/backgrounds/BgSquircle.tsx -------------------------------------------------------------------------------- /src/components/backgrounds/BgSquircleMask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/backgrounds/BgSquircleMask.tsx -------------------------------------------------------------------------------- /src/components/backgrounds/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/backgrounds/types.ts -------------------------------------------------------------------------------- /src/components/bodies/Breasts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/bodies/Breasts.tsx -------------------------------------------------------------------------------- /src/components/bodies/Chest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/bodies/Chest.tsx -------------------------------------------------------------------------------- /src/components/bodies/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/bodies/types.ts -------------------------------------------------------------------------------- /src/components/clothing/ChequeredShirt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothing/ChequeredShirt.tsx -------------------------------------------------------------------------------- /src/components/clothing/ChequeredShirtDark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothing/ChequeredShirtDark.tsx -------------------------------------------------------------------------------- /src/components/clothing/DenimJacket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothing/DenimJacket.tsx -------------------------------------------------------------------------------- /src/components/clothing/Dress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothing/Dress.tsx -------------------------------------------------------------------------------- /src/components/clothing/DressShirt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothing/DressShirt.tsx -------------------------------------------------------------------------------- /src/components/clothing/Hoodie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothing/Hoodie.tsx -------------------------------------------------------------------------------- /src/components/clothing/Shirt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothing/Shirt.tsx -------------------------------------------------------------------------------- /src/components/clothing/TankTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothing/TankTop.tsx -------------------------------------------------------------------------------- /src/components/clothing/VNeck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothing/VNeck.tsx -------------------------------------------------------------------------------- /src/components/clothing/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothing/types.ts -------------------------------------------------------------------------------- /src/components/clothingGraphic/Donut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothingGraphic/Donut.tsx -------------------------------------------------------------------------------- /src/components/clothingGraphic/Gatsby.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothingGraphic/Gatsby.tsx -------------------------------------------------------------------------------- /src/components/clothingGraphic/GraphQL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothingGraphic/GraphQL.tsx -------------------------------------------------------------------------------- /src/components/clothingGraphic/Rainbow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothingGraphic/Rainbow.tsx -------------------------------------------------------------------------------- /src/components/clothingGraphic/React.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothingGraphic/React.tsx -------------------------------------------------------------------------------- /src/components/clothingGraphic/Redwood.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothingGraphic/Redwood.tsx -------------------------------------------------------------------------------- /src/components/clothingGraphic/Vue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/clothingGraphic/Vue.tsx -------------------------------------------------------------------------------- /src/components/eyebrows/AngryEyebrows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyebrows/AngryEyebrows.tsx -------------------------------------------------------------------------------- /src/components/eyebrows/ConcernedEyebrows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyebrows/ConcernedEyebrows.tsx -------------------------------------------------------------------------------- /src/components/eyebrows/LeftLoweredEyebrows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyebrows/LeftLoweredEyebrows.tsx -------------------------------------------------------------------------------- /src/components/eyebrows/Normal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyebrows/Normal.tsx -------------------------------------------------------------------------------- /src/components/eyebrows/SeriousEyebrows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyebrows/SeriousEyebrows.tsx -------------------------------------------------------------------------------- /src/components/eyes/ContentEyes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/ContentEyes.tsx -------------------------------------------------------------------------------- /src/components/eyes/Crazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/Crazy.tsx -------------------------------------------------------------------------------- /src/components/eyes/Cute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/Cute.tsx -------------------------------------------------------------------------------- /src/components/eyes/Cyborg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/Cyborg.tsx -------------------------------------------------------------------------------- /src/components/eyes/DizzyEyes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/DizzyEyes.tsx -------------------------------------------------------------------------------- /src/components/eyes/Dollars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/Dollars.tsx -------------------------------------------------------------------------------- /src/components/eyes/HappyEyes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/HappyEyes.tsx -------------------------------------------------------------------------------- /src/components/eyes/HeartEyes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/HeartEyes.tsx -------------------------------------------------------------------------------- /src/components/eyes/Lashes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/Lashes.tsx -------------------------------------------------------------------------------- /src/components/eyes/LeftTwitchEyes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/LeftTwitchEyes.tsx -------------------------------------------------------------------------------- /src/components/eyes/NormalEyes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/NormalEyes.tsx -------------------------------------------------------------------------------- /src/components/eyes/PiratePatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/PiratePatch.tsx -------------------------------------------------------------------------------- /src/components/eyes/SimpleEyes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/SimpleEyes.tsx -------------------------------------------------------------------------------- /src/components/eyes/SimplePatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/SimplePatch.tsx -------------------------------------------------------------------------------- /src/components/eyes/SquintEyes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/SquintEyes.tsx -------------------------------------------------------------------------------- /src/components/eyes/Stars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/Stars.tsx -------------------------------------------------------------------------------- /src/components/eyes/Wink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/eyes/Wink.tsx -------------------------------------------------------------------------------- /src/components/eyes/types.ts: -------------------------------------------------------------------------------- 1 | export interface EyeProps { 2 | withLashes?: boolean 3 | } 4 | -------------------------------------------------------------------------------- /src/components/facialHair/Goatee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/facialHair/Goatee.tsx -------------------------------------------------------------------------------- /src/components/facialHair/MediumBeard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/facialHair/MediumBeard.tsx -------------------------------------------------------------------------------- /src/components/facialHair/Stubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/facialHair/Stubble.tsx -------------------------------------------------------------------------------- /src/components/facialHair/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/facialHair/types.ts -------------------------------------------------------------------------------- /src/components/hair/Afro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hair/Afro.tsx -------------------------------------------------------------------------------- /src/components/hair/BaldingHair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hair/BaldingHair.tsx -------------------------------------------------------------------------------- /src/components/hair/BobCut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hair/BobCut.tsx -------------------------------------------------------------------------------- /src/components/hair/BunHair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hair/BunHair.tsx -------------------------------------------------------------------------------- /src/components/hair/BuzzCut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hair/BuzzCut.tsx -------------------------------------------------------------------------------- /src/components/hair/LongHair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hair/LongHair.tsx -------------------------------------------------------------------------------- /src/components/hair/Mohawk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hair/Mohawk.tsx -------------------------------------------------------------------------------- /src/components/hair/PixieCut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hair/PixieCut.tsx -------------------------------------------------------------------------------- /src/components/hair/ShortHair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hair/ShortHair.tsx -------------------------------------------------------------------------------- /src/components/hair/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hair/types.ts -------------------------------------------------------------------------------- /src/components/hats/Beanie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hats/Beanie.tsx -------------------------------------------------------------------------------- /src/components/hats/Hijab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hats/Hijab.tsx -------------------------------------------------------------------------------- /src/components/hats/Party.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hats/Party.tsx -------------------------------------------------------------------------------- /src/components/hats/Turban.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/hats/Turban.tsx -------------------------------------------------------------------------------- /src/components/hats/types.ts: -------------------------------------------------------------------------------- 1 | export interface HatProps { 2 | scale?: number 3 | } 4 | -------------------------------------------------------------------------------- /src/components/mouths/Grin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/mouths/Grin.tsx -------------------------------------------------------------------------------- /src/components/mouths/Lips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/mouths/Lips.tsx -------------------------------------------------------------------------------- /src/components/mouths/OpenMouth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/mouths/OpenMouth.tsx -------------------------------------------------------------------------------- /src/components/mouths/PiercedTongue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/mouths/PiercedTongue.tsx -------------------------------------------------------------------------------- /src/components/mouths/Sad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/mouths/Sad.tsx -------------------------------------------------------------------------------- /src/components/mouths/SeriousMouth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/mouths/SeriousMouth.tsx -------------------------------------------------------------------------------- /src/components/mouths/SmileOpen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/mouths/SmileOpen.tsx -------------------------------------------------------------------------------- /src/components/mouths/Tongue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/mouths/Tongue.tsx -------------------------------------------------------------------------------- /src/components/mouths/VomitingRainbow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/mouths/VomitingRainbow.tsx -------------------------------------------------------------------------------- /src/components/mouths/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/components/mouths/types.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/theme.ts -------------------------------------------------------------------------------- /src/themeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/themeContext.tsx -------------------------------------------------------------------------------- /src/utils/Noop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/src/utils/Noop.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecespedes/react-native-bigheads/HEAD/yarn.lock --------------------------------------------------------------------------------