import * as React from 'react' import { uniqueId } from 'lodash' import HatColor from './HatColor' export default class Hijab extends React.Component { static optionValue = 'Hijab' private filter1 = uniqueId('react-filter-') private mask1 = uniqueId('react-mask-') private mask2 = uniqueId('react-mask-') private path1 = uniqueId('react-path-') private path2 = uniqueId('react-path-') render () { const { filter1, mask1, mask2, path1, path2 } = this return ( {this.props.children} ) } }