1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-16 23:29:49 +00:00

[library decryption dialog] fixed the 'close' icon after the upgrade of seafile-ui.css (#7654)

This commit is contained in:
llj
2025-03-21 18:00:55 +08:00
committed by GitHub
parent 67e78e76e3
commit cacef99651
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react';
import { gettext } from '../../utils/constants';
import '../../css/seahub-modal-header.css';
const SeahubModalCloseIcon = (props) => {
return (
<button type="button" className={`close seahub-modal-btn ${props.className ? props.className : ''}`} data-dismiss="modal" aria-label={gettext('Close')} onClick={props.toggle}>
<span className="seahub-modal-btn-inner">
<i className="sf3-font sf3-font-x-01" aria-hidden="true"></i>
</span>
</button>
);
};
export default SeahubModalCloseIcon;