import React from 'react'; import type { DatePickerProps } from 'antd'; import { DatePicker, Space, theme } from 'antd'; import type { Dayjs } from 'dayjs'; const App: React.FC = () => { const { token } = theme.useToken(); const style: React.CSSProperties = { border: `1px solid ${token.colorPrimary}`, borderRadius: '50%', }; const cellRender: DatePickerProps['cellRender'] = (current, info) => { if (info.type !== 'date') { return info.originNode; } if (typeof current === 'number' || typeof current === 'string') { return
{current}
; } return (
{current.date()}
); }; return ( ); }; export default App;