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; line?: string; }; function SvgYacd({ width = 320, height = 320, animate = false, c0 = '#316eb5', c1 = '#f19500', line = '#cccccc', }: Props) { const faceClasName = cx({ [s.path]: animate }); return ( ); } export default SvgYacd;