UNPKG

subhasmitalmg-react-spreadsheet-import

Version:

React spreadsheet import for xlsx and csv files with column matching and validation steps

7 lines (4 loc) 322 B
import { jsx } from 'react/jsx-runtime'; import { ModalFooter, Button } from '@chakra-ui/react'; const ContinueButton = ({ onContinue, title, isLoading }) => (jsx(ModalFooter, { children: jsx(Button, { size: "lg", w: "21rem", onClick: onContinue, isLoading: isLoading, children: title }) })); export { ContinueButton };