@pagopa/mui-italia
Version:
[Material-UI](https://mui.com/core/) theme inspired by [Bootstrap Italia](https://italia.github.io/bootstrap-italia/).
14 lines (13 loc) • 509 B
TypeScript
import React from "react";
import { SxProps } from "@mui/system";
type TOSAgreementProps = {
productName: string;
description: React.ReactNode | string;
onConfirm: VoidFunction;
children?: React.ReactNode;
sx?: SxProps;
confirmBtnDisabled?: boolean;
confirmBtnLabel?: string;
};
export declare function TOSAgreement({ productName, description, children, onConfirm, sx, confirmBtnDisabled, confirmBtnLabel, }: TOSAgreementProps): import("react/jsx-runtime").JSX.Element;
export {};