import React from 'react' import { useTheme } from '../../themeContext' import { HairProps } from './types' export const Back = () => <> export const Front = ({ hairColor }: HairProps) => { const { colors, skin } = useTheme() const { base, shadow } = colors.hair[hairColor] return ( <> ) }