@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
10 lines (9 loc) • 343 B
TypeScript
import React from 'react';
import { BackToButtonProps } from './types';
/**
* BackToButton allow users to navigate to a provided path.
*
* Props of the [Material-UI Button](https://mui.com/material-ui/api/button/#props) component are also available.
*/
declare const BackToButton: React.FC<BackToButtonProps>;
export default BackToButton;