Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/components / controls / Button / __tests__ / __snapshots__ / Button.spec.js.snap
Size: Mime:
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Button matches the snapshot: basic button 1`] = `
<Button
  active={false}
  className={null}
  dimension={null}
  focus={false}
  hover={false}
  href={null}
  inputButtonClass={null}
  modifier={null}
  responsive={null}
  target="_self"
  type="button"
  variant="accent"
>
  <button
    className="Button Button--accent"
    type="button"
  >
    <span
      className="Button-contentWrapper"
    >
      Hello
    </span>
  </button>
</Button>
`;

exports[`Button matches the snapshot: link 1`] = `
<Button
  active={false}
  className={null}
  dimension={null}
  focus={false}
  hover={false}
  href="/"
  inputButtonClass={null}
  modifier={null}
  responsive={null}
  target="_self"
  type="button"
  variant="accent"
>
  <a
    className="Button Button--accent"
    href="/"
    rel="noopener noreferrer"
    target="_self"
  >
    <span
      className="Button-contentWrapper"
    >
      Hello
    </span>
  </a>
</Button>
`;