import React from 'react' import { useTheme } from '../../themeContext' import { ClothingProps } from './types' import { Noop } from '../../utils/Noop' export const VNeck = ({ color, graphic: Graphic = Noop }: ClothingProps) => { const { colors, skin } = useTheme() const { base, shadow } = colors.clothing[color] return ( <> ) }