13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
![]() |
import { Box } from "@saleor/macaw-ui/next";
|
||
|
import React from "react";
|
||
|
|
||
|
interface LimitsInfoProps {
|
||
|
text: string;
|
||
|
}
|
||
|
|
||
|
export const LimitsInfo: React.FC<LimitsInfoProps> = ({ text }) => (
|
||
|
<Box position="absolute" left={10} bottom={3}>
|
||
|
{text}
|
||
|
</Box>
|
||
|
);
|