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