import React from 'react' import { useTheme } from '../../themeContext' import { FacialHairProps } from './types' export const MediumBeard = ({ color }: FacialHairProps) => { const { colors } = useTheme() const { base, shadow } = colors.hair[color] return ( <> ) }