@0xsequence/connect
Version:
Connect package for Sequence Web SDK
7 lines • 445 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { cn, Text } from '@0xsequence/design-system';
export const PageHeading = (props) => {
const { children, className, ...rest } = props;
return (_jsx(Text, { className: cn('text-center mt-10 mb-6', className), variant: "normal", fontWeight: "bold", color: "primary", asChild: true, children: _jsx("h1", { ...rest, children: children }) }));
};
//# sourceMappingURL=PageHeading.js.map