saleor-apps-redis_apl/apps/taxes/src/modules/ui/app-card.tsx

17 lines
328 B
TypeScript
Raw Normal View History

2023-05-18 11:36:15 +00:00
import { PropsWithBox, Box } from "@saleor/macaw-ui/next";
export const AppCard = ({ children, ...p }: PropsWithBox<{}>) => {
return (
<Box
borderRadius={4}
borderWidth={1}
borderColor={"neutralPlain"}
borderStyle={"solid"}
padding={8}
{...p}
>
{children}
</Box>
);
};