import * as React from "react"; import { cx } from "@emotion/css"; import { textBlock } from "../style"; import { Stack } from "../../layout"; const SPACE_BETWEEN_ELS = "l"; export interface TextBlockProps { className?: string; children?: React.ReactNode; } const TextBlock = ({ children, className }: TextBlockProps) => { return ( {children} ); }; export default TextBlock;