import React from 'react' import { useTheme } from '../../themeContext' import { ClothingProps } from './types' export const Front = ({ color }: ClothingProps) => { const { colors, skin } = useTheme() const { base } = colors.clothing[color] return ( <> ) } export const Back = ({ color }: ClothingProps) => { const { colors } = useTheme() const { base, shadow } = colors.clothing[color] return ( <> ) } export const braStraps = false