UNPKG

@js-smart/react-kit

Version:
11 lines (10 loc) 418 B
import { default as React } from 'react'; import { NavigateFunction } from 'react-router-dom'; interface GoBackButtonProps { name?: string; children?: React.ReactNode; navigate: NavigateFunction; color?: "inherit" | "primary" | "secondary" | "success" | "error" | "info" | "warning"; } export declare function GoBackButton(props: GoBackButtonProps): import("react/jsx-runtime").JSX.Element; export {};