Repository URL to install this package:
|
Version:
8.0.0 ▾
|
// 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>
`;