import { Box, BoxProps } from '@wix/design-system'; import { BaseComponentProps, MaxLines, MaxLinesProps } from '../MaxLines'; import React from 'react'; export interface ModalHeadingBoxProps
extends Partial ['children'];
maxLines?: MaxLinesProps ['maxLines'];
lineHeight: MaxLinesProps ['lineHeight'];
}
export function ModalHeadingBox (
props: ModalHeadingBoxProps ,
) {
const { children, maxLines, lineHeight, ...rest } = props;
return (