import type { HTMLProps } from 'react';
import { css } from '@emotion/css';
import type { CSSProperties } from './styles';
type ParagraphProps = Omit, 'style'> & {
style?: CSSProperties;
isLast?: boolean;
};
export function Paragraph({
style,
isLast,
children,
...props
}: ParagraphProps) {
return (
{children}
);
}