icons.test.js.snap 1.12 KB
Newer Older
Cole Bemis's avatar
Cole Bemis committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`exports correct object 1`] = `
Object {
  "icon1": Icon {
    "attrs": Object {
      "class": "feather feather-icon1",
      "fill": "none",
      "height": 24,
      "stroke": "currentColor",
      "stroke-linecap": "round",
      "stroke-linejoin": "round",
      "stroke-width": 2,
      "viewBox": "0 0 24 24",
      "width": 24,
      "xmlns": "http://www.w3.org/2000/svg",
    },
    "contents": "<line x1=\\"23\\" y1=\\"1\\" x2=\\"1\\" y2=\\"23\\" /><line x1=\\"1\\" y1=\\"1\\" x2=\\"23\\" y2=\\"23\\" />",
    "name": "icon1",
    "tags": Array [
      "foo",
      "bar",
      "hello",
      "world",
    ],
  },
  "icon2": Icon {
    "attrs": Object {
      "class": "feather feather-icon2",
      "fill": "none",
      "height": 24,
      "stroke": "currentColor",
      "stroke-linecap": "round",
      "stroke-linejoin": "round",
      "stroke-width": 2,
      "viewBox": "0 0 24 24",
      "width": 24,
      "xmlns": "http://www.w3.org/2000/svg",
    },
    "contents": "<circle cx=\\"12\\" cy=\\"12\\" r=\\"11\\" />",
    "name": "icon2",
    "tags": Array [],
  },
}
`;