import React, { useState } from 'react'; import { Button, ConfigProvider, Modal, Space } from 'antd'; import { createStyles, useTheme } from 'antd-style'; const useStyle = createStyles(({ token }) => ({ 'my-modal-body': { background: token['blue-1'], padding: token.paddingSM, }, 'my-modal-mask': { boxShadow: `inset 0 0 15px #fff`, }, 'my-modal-header': { borderBottom: `1px dotted ${token.colorPrimary}`, }, 'my-modal-footer': { color: token.colorPrimary, }, 'my-modal-content': { border: '1px solid #333', }, })); const App: React.FC = () => { const [isModalOpen, setIsModalOpen] = useState([false, false]); const { styles } = useStyle(); const token = useTheme(); const toggleModal = (idx: number, target: boolean) => { setIsModalOpen((p) => { p[idx] = target; return [...p]; }); }; const classNames = { body: styles['my-modal-body'], mask: styles['my-modal-mask'], header: styles['my-modal-header'], footer: styles['my-modal-footer'], content: styles['my-modal-content'], }; const modalStyles = { header: { borderLeft: `5px solid ${token.colorPrimary}`, borderRadius: 0, paddingInlineStart: 5, }, body: { boxShadow: 'inset 0 0 5px #999', borderRadius: 5, }, mask: { backdropFilter: 'blur(10px)', }, footer: { borderTop: '1px solid #333', }, content: { boxShadow: '0 0 30px #999', }, }; return ( <> toggleModal(0, false)} onCancel={() => toggleModal(0, false)} footer="Footer" classNames={classNames} styles={modalStyles} >

Some contents...

Some contents...

Some contents...

toggleModal(1, false)} onCancel={() => toggleModal(1, false)} footer="Footer" >

Some contents...

Some contents...

Some contents...

); }; export default App;