import { useId, type ReactNode } from 'react'; import FacialHair from './facialHair'; import { withOptionValue } from '../../utils/optionValue'; const optionValue = 'Eyepatch'; interface Props { children?: ReactNode; } function Eyepatch({ children }: Props) { const mask1 = useId(); const path1 = useId(); return ( {children} ); } export default withOptionValue(Eyepatch, optionValue);