UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

16 lines (15 loc) 447 B
import React from "react"; import { Value, Language } from "../types/date-picker"; import { SetValue } from "../props"; interface Props { value: Value; setValue: SetValue<Value>; initialValue: Value; setInitialValue: React.Dispatch<React.SetStateAction<Value>>; onSave: () => void; onCancel: () => void; type: string; lang: Language; } declare const Buttons: React.FC<Props>; export default Buttons;