import { fontSize, MQ } from '@/libs/themes'; import React from 'react'; export const TitleDescription = ({ children, align = 'center', whiteSpace, }: { children: React.ReactNode; align?: 'center' | 'left'; whiteSpace?: 'pre-line' | 'normal'; }) => { return (
{children}
); };