import React from 'react' import { classNames } from '../../../helpers' import style from './Paragraph.module.css' type ParagraphProps = React.HTMLAttributes & { children: React.ReactNode; props?: React.HTMLAttributes; color?: 'default' | 'primary' | 'back'; size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'; weight?: 'none' | 'hairline' | 'thin' | 'light' | 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold' | 'black'; className?: string | string[]; styles?: React.CSSProperties; } export const Paragraph = ({ children, props, className = '', weight = 'normal', color = 'default', size = 'md', styles }: ParagraphProps) => { return (

{children}

) }