mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
35 lines
802 B
Plaintext
35 lines
802 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`DropdownButton should support href like Button 1`] = `
|
|
<div
|
|
class="ant-btn-group ant-dropdown-button"
|
|
>
|
|
<a
|
|
class="ant-btn ant-btn-default"
|
|
href="https://ant.design"
|
|
/>
|
|
<button
|
|
class="ant-btn ant-dropdown-trigger ant-btn-default ant-btn-icon-only"
|
|
type="button"
|
|
>
|
|
<i
|
|
class="anticon anticon-ellipsis"
|
|
>
|
|
<svg
|
|
aria-hidden="true"
|
|
class=""
|
|
data-icon="ellipsis"
|
|
fill="currentColor"
|
|
height="1em"
|
|
viewBox="64 64 896 896"
|
|
width="1em"
|
|
>
|
|
<path
|
|
d="M176 511a56 56 0 1 0 112 0 56 56 0 1 0-112 0zm280 0a56 56 0 1 0 112 0 56 56 0 1 0-112 0zm280 0a56 56 0 1 0 112 0 56 56 0 1 0-112 0z"
|
|
/>
|
|
</svg>
|
|
</i>
|
|
</button>
|
|
</div>
|
|
`;
|