import React from 'react'
import { useTheme } from '../../themeContext'
import { MouthProps } from './types'
export const Lips = ({ lipColor }: MouthProps) => {
const { colors } = useTheme()
const { base, shadow } = colors.lipColors[lipColor || 'red']
return (
<>
{/* */}
>
)
}