import React from 'react';
import PropTypes from 'prop-types';
import ReactMarkdown from 'react-markdown';
import { TYPOGRAPHY } from '../../../../helpers/constants/design-system';
import Typography from '../../../ui/typography/typography';
const Paragraph = (props) => ;
export const SnapUIMarkdown = ({ children }) => {
return (
{children}
);
};
SnapUIMarkdown.propTypes = {
children: PropTypes.string,
};