import { Box } from "@saleor/macaw-ui/next"; import React from "react"; interface LimitsInfoProps { text: string; } export const LimitsInfo: React.FC = ({ text }) => ( {text} );