import React from 'react' import { useTheme } from '../../themeContext' import { ClothingProps } from '../clothing/types' import { HatProps } from './types' import { Noop } from '../../utils/Noop' export const Front = ({ color, scale = 1 }: ClothingProps & HatProps) => { const { colors } = useTheme() const { base, shadow } = colors.clothing[color] return ( ) } export const Back = Noop