import { Box, BoxProps } from '@wix/design-system'; import { BaseComponentProps, MaxLines, MaxLinesProps } from '../MaxLines'; import React from 'react'; export interface ModalHeadingBoxProps

extends Partial { children: MaxLinesProps

['children']; maxLines?: MaxLinesProps

['maxLines']; lineHeight: MaxLinesProps

['lineHeight']; } export function ModalHeadingBox

( props: ModalHeadingBoxProps

, ) { const { children, maxLines, lineHeight, ...rest } = props; return ( {children} ); }