import * as React from "react"; import { cx } from "@emotion/css"; import { container } from "../style"; export interface ContainerProps { children: React.ReactNode; "data-cy"?: string; className?: string; } const Container = ({ children, "data-cy": dataCy = "container", className }: ContainerProps) => (