2022-04-20 15:29:34 +05:00

71 lines
1.4 KiB
TypeScript

import React, {
FunctionComponent,
JSXElementConstructor,
CSSProperties,
} from 'react';
import cn from 'clsx';
import s from './Text.module.css';
interface TextProps {
variant?: Variant;
className?: string;
style?: CSSProperties;
children?: React.ReactNode | any;
html?: string;
onClick?: () => any;
}
type Variant = 'heading' | 'body' | 'pageHeading' | 'sectionHeading';
const Text: FunctionComponent<TextProps> = ({
style,
className = '',
variant = 'body',
children,
html,
onClick,
}) => {
const componentsMap: {
[P in Variant]: React.ComponentType<any> | string;
} = {
body: 'div',
heading: 'h1',
pageHeading: 'h1',
sectionHeading: 'h2',
};
const Component:
| JSXElementConstructor<any>
| React.ReactElement<any>
| React.ComponentType<any>
| string = componentsMap![variant!];
const htmlContentProps = html
? {
dangerouslySetInnerHTML: { __html: html },
}
: {};
return (
<Component
className={cn(
s.root,
{
[s.body]: variant === 'body',
[s.heading]: variant === 'heading',
[s.pageHeading]: variant === 'pageHeading',
[s.sectionHeading]: variant === 'sectionHeading',
},
className
)}
onClick={onClick}
style={style}
{...htmlContentProps}
>
{children}
</Component>
);
};
export default Text;