@useloops/design-system
Version:
The official React based Loops design system
17 lines (14 loc) • 471 B
TypeScript
import { SxProps, Theme } from '@mui/material';
import { Breakpoint } from '@mui/system';
import { FunctionComponent, ReactNode } from 'react';
interface SectionHeaderProps {
buttons?: ReactNode;
loading?: boolean;
subtitle?: string;
title?: string;
maxWidth?: Breakpoint | false;
sx?: SxProps<Theme>;
}
declare const SectionHeader: FunctionComponent<SectionHeaderProps>;
export { SectionHeader as default };
export type { SectionHeaderProps };