UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

14 lines 548 B
import React from 'react'; import { SxProps, Theme } from '@mui/material'; export type PortalSectionHeaderProps = { title: string; buttonText?: string; summaryText?: React.ReactNode; link?: string; sx?: SxProps<Theme>; centered?: boolean; reverseButtonAndText?: boolean; }; declare const PortalSectionHeader: ({ title, buttonText, summaryText, link, sx, centered, reverseButtonAndText, }: PortalSectionHeaderProps) => React.ReactNode; export default PortalSectionHeader; //# sourceMappingURL=PortalSectionHeader.d.ts.map