import cx from 'clsx'; import * as React from 'react'; import s from './SvgYacd.module.scss'; type Props = { width?: number; height?: number; animate?: boolean; c0?: string; c1?: string; stroke?: string; eye?: string; mouth?: string; }; function SvgYacd({ width = 320, height = 320, animate = false, c0 = 'currentColor', stroke = '#eee', eye = '#eee', mouth = '#eee', }: Props) { const faceClasName = cx({ [s.path]: animate }); return ( {/* face */} {/* mouth */} ); } export default SvgYacd;