import * as React from 'react' import { uniqueId } from 'lodash' import Colors from './Colors' import Graphics from './Graphics' export default class GraphicShirt extends React.Component { static optionValue = 'GraphicShirt' private path1 = uniqueId('react-path-') private mask1 = uniqueId('react-mask-') render () { const { path1, mask1 } = this return ( ) } }