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