import { useId, type ReactNode } from 'react'; import HatColor from './HatColor'; import { withOptionValue } from '../../utils/optionValue'; const optionValue = 'Hijab'; interface Props { children?: ReactNode; } function Hijab({ children }: Props) { const filter1 = useId(); const mask1 = useId(); const mask2 = useId(); const path1 = useId(); const path2 = useId(); return ( {children} ); } export default withOptionValue(Hijab, optionValue);