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