I don't know why I don't find how to add the ok cancel button (It works in the past)

expected to have the ok and cancel buttons.


| Tech | Version |
| ----------- | ------- |
| Material-UI | v 4.0.0-alpha.7 |
| React | |
| Browser | |
| TypeScript | |
| etc. | |
There is no way to display dialog buttons on the desktop with <DatePicker />.
The only option is to use MobileDatePicker.
A couple of buttons and there use cases that come to mind for the date picker:
That could potentially be useful. I don't know if it's something that should be built-in, or only provide a customization point for doing it.
We could think about some option to render anything after the calendar. It could be helpful for buttons or displaying related helper information for users. Something like renderBottomInfo.
For instance react-dates have the following prop
<DateRangePickerWrapper calendarInfoPosition="bottom" renderCalendarInfo={renderCalendarInfo} autoFocus />
http://airbnb.io/react-dates/?path=/story/drp-calendar-props--with-info-panel-bottom
A random thought on the possible API:
```jsx
good thanks!
how can I override the 'OK' and 'Cancel' text from KeyboardDatePicker?
What do you want to do? do you want to change the ok text? if yes use the okLabel

okLabel='Done'
Most helpful comment
A couple of buttons and there use cases that come to mind for the date picker:
That could potentially be useful. I don't know if it's something that should be built-in, or only provide a customization point for doing it.