import * as React from 'react' import { uniqueId } from 'lodash' export default class Wayfarers extends React.Component { static optionValue = 'Wayfarers' private path1 = uniqueId('react-path-') private path2 = uniqueId('react-path-') private filter1 = uniqueId('react-filter-') private linearGradient1 = uniqueId('react-linear-gradient-') render () { const { path1, path2, filter1, linearGradient1 } = this return ( ) } }