import classNames from 'classnames' import React from 'react' import { Text, types } from 'react-bricks/rsc' import { textColors } from '../../colors' interface TitleSubtitleProps { bigCentered?: boolean extraboldTitle?: boolean className?: string title: types.TextValue subtitle: types.TextValue } const TitleSubtitle: React.FC = ({ bigCentered = false, extraboldTitle = false, className = '', title, subtitle, }) => { return (
(

{children}

)} /> (

{children}

)} />
) } export default TitleSubtitle