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