@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
11 lines (10 loc) • 317 B
TypeScript
import { PaletteProp } from '@smart-react-components/core/types';
import React from 'react';
export interface Props {
isSoft: boolean;
palette: PaletteProp;
onCancel: (e: Event) => void;
onSave: (e: Event) => void;
}
declare const DatePickerButtons: React.FC<Props>;
export default DatePickerButtons;