The code powering m.abunchtell.com https://m.abunchtell.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

42 行
825 B

  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`<Avatar /> Autoplay renders a animated avatar 1`] = `
  3. <div
  4. className="account__avatar"
  5. onMouseEnter={[Function]}
  6. onMouseLeave={[Function]}
  7. style={
  8. Object {
  9. "backgroundImage": "url(/animated/alice.gif)",
  10. "backgroundSize": "100px 100px",
  11. "height": "100px",
  12. "width": "100px",
  13. }
  14. }
  15. >
  16. <i
  17. className="fas fa-fw fa-robot bot-icon"
  18. />
  19. </div>
  20. `;
  21. exports[`<Avatar /> Still renders a still avatar 1`] = `
  22. <div
  23. className="account__avatar"
  24. onMouseEnter={[Function]}
  25. onMouseLeave={[Function]}
  26. style={
  27. Object {
  28. "backgroundImage": "url(/static/alice.jpg)",
  29. "backgroundSize": "100px 100px",
  30. "height": "100px",
  31. "width": "100px",
  32. }
  33. }
  34. >
  35. <i
  36. className="fas fa-fw fa-robot bot-icon"
  37. />
  38. </div>
  39. `;