feat: date and time picker (#13985)

This commit is contained in:
Wu Tianwei
2025-02-19 10:56:18 +08:00
committed by GitHub
parent 4a332ff1af
commit 19d413ac1e
39 changed files with 1234 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
import React from 'react'
import { useTranslation } from 'react-i18next'
const Header = () => {
const { t } = useTranslation()
return (
<div className='flex flex-col border-b-[0.5px] border-divider-regular'>
<div className='flex items-center px-2 py-1.5 text-text-primary system-md-semibold'>
{t('time.title.pickTime')}
</div>
</div>
)
}
export default React.memo(Header)