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