lune-ui-lib
Version:
Lune UI Components Library
11 lines (10 loc) • 309 B
TypeScript
/// <reference types="react" />
import type { SxProps } from '@mui/material';
declare const BackButton: ({ label, onClick, sx, iconColor, href, ...rest }: {
label?: string;
onClick: () => void;
sx?: SxProps;
iconColor?: string;
href?: string;
}) => JSX.Element;
export default BackButton;