import React from 'react'
import { useTheme } from '../themeContext'
import { colors as themeColors } from '../theme'
interface FaceMaskProps {
color: keyof typeof themeColors.clothing
}
export const FaceMask = ({ color }: FaceMaskProps) => {
const { colors, skin } = useTheme()
const { base, shadow } = colors.clothing[color]
return (
<>
>
)
}