import * as React from "react";
import { IEmphasisBlock } from "./interfaces/i-emphasis-block";
const EmphasisBlock = ({ children }: IEmphasisBlock) => {
const divider = () => {
return (
);
};
return (
{divider()}
{children}
{divider()}
);
};
export { EmphasisBlock };