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