| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | 
							- 'use client'
 
- import type { FC } from 'react'
 
- import React from 'react'
 
- import cn from '@/utils/classnames'
 
- import { useTranslation } from 'react-i18next'
 
- import Button from '../button'
 
- import { RiCloseLine } from '@remixicon/react'
 
- type Props = {
 
-   title: string
 
-   className?: string
 
-   beforeHeader?: React.ReactNode
 
-   onClose: () => void
 
-   hideCloseBtn?: boolean
 
-   onConfirm: () => void
 
-   children: React.ReactNode
 
- }
 
- const ModalLikeWrap: FC<Props> = ({
 
-   title,
 
-   className,
 
-   beforeHeader,
 
-   children,
 
-   onClose,
 
-   hideCloseBtn,
 
-   onConfirm,
 
- }) => {
 
-   const { t } = useTranslation()
 
-   return (
 
-     <div className={cn('w-[320px] rounded-2xl border-[0.5px] border-components-panel-border bg-components-panel-bg px-3 pb-4 pt-3.5 shadow-xl', className)}>
 
-       {beforeHeader || null}
 
-       <div className='mb-1 flex h-6 items-center justify-between'>
 
-         <div className='system-xl-semibold text-text-primary'>{title}</div>
 
-         {!hideCloseBtn && (
 
-           <div
 
-             className='cursor-pointer p-1.5 text-text-tertiary'
 
-             onClick={onClose}
 
-           >
 
-             <RiCloseLine className='size-4' />
 
-           </div>
 
-         )}
 
-       </div>
 
-       <div className='mt-2'>{children}</div>
 
-       <div className='mt-4 flex justify-end'>
 
-         <Button
 
-           className='mr-2'
 
-           onClick={onClose}>{t('common.operation.cancel')}</Button>
 
-         <Button
 
-           onClick={onConfirm}
 
-           variant='primary'
 
-         >{t('common.operation.save')}</Button>
 
-       </div>
 
-     </div>
 
-   )
 
- }
 
- export default React.memo(ModalLikeWrap)
 
 
  |