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