import React from 'react'; import PropTypes from 'prop-types'; import cx from 'classnames'; import s from './SvgYacd.module.css'; function SvgYacd({ width = 320, height = 320, animate = false, c0 = 'currentColor', c1 = '#eee' }) { const faceClasName = cx({ [s.path]: animate }); return ( {/* face */} {/* mouth */} ); } SvgYacd.propTypes = { width: PropTypes.number, height: PropTypes.number }; export default SvgYacd;