8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
import { Box, Text } from "@saleor/macaw-ui/next";
|
|
import React from "react";
|
|
|
|
export const Title: React.FC = ({ children }) => (
|
|
<Box paddingX={6} paddingTop={6}>
|
|
<Text variant="heading">{children}</Text>
|
|
</Box>
|
|
);
|