import * as React from 'react' import { uniqueId } from 'lodash' import FacialHair from './facialHair' import HairColor from './HairColor' export default class ShortHairShaggy extends React.Component { static optionValue = 'ShortHairShaggy' 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} {/*XXX: some how the mask is broken, fix it later.*/} ) } }