ant-design/components/upload/__tests__/__snapshots__/upload.test.js.snap
afc163 08d1a71ff4
refactor: Move Upload from less to css in js (#34528)
* refactor: Upload to CSS-in-JS

* chore: clean up outdated code

* chore: add FIXME

* revert useless change of UploadList

* fix: upload animation
2022-04-25 18:46:53 +08:00

28 lines
530 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Upload rtl render component should be rendered correctly in RTL direction 1`] = `
<span
class="ant-upload-wrapper ant-upload-rtl"
>
<div
class="ant-upload ant-upload-select"
style="display: none;"
>
<span
class="ant-upload"
role="button"
tabindex="0"
>
<input
accept=""
style="display: none;"
type="file"
/>
</span>
</div>
<div
class="ant-upload-list ant-upload-list-text"
/>
</span>
`;